Reporter | Benjamin Schmid (blueshift7) |
---|---|
Created | Jan 13, 2012 7:44:59 PM |
Updated | Jan 13, 2012 7:46:07 PM |
Priority | Normal |
Type | Bug |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Evgeny Pasynkov (pasynkov) |
Subsystem | Code Cleanup |
Affected versions | 6.1 |
Fixed in build | No Fixed in build |
If I reformat VB.Code with R# which has a Attribute declaration right after a XML Document, the Attribute is misaligned with the last XML Documentation closing tag rather the following, annotated code element.
ACTUAL: The <Serializable()> start on the same identation column as </summar>.
EXPECTED: The <Serializable()> should start in identation column of the "Public Class" declaration
''' <summary> ''' A documentation ''' </summary> <Serializable()> Public Class VisaCommunicationException Inherits Exception Sub New() End Sub
ACTUAL: The <Serializable()> start on the same identation column as </summar>.
EXPECTED: The <Serializable()> should start in identation column of the "Public Class" declaration