Changed highlighting range for unresolved annotation name to not include '@'
#KT-11529 Fixed
This commit is contained in:
@@ -4,6 +4,6 @@ data class Pair(val x: Int, val y: Int)
|
||||
|
||||
fun foo(): Int {
|
||||
<!WRONG_ANNOTATION_TARGET!>@Ann<!> val (a, b) = Pair(12, 34)
|
||||
<!UNRESOLVED_REFERENCE!>@Err<!> val (c, d) = Pair(56, 78)
|
||||
@<!UNRESOLVED_REFERENCE!>Err<!> val (c, d) = Pair(56, 78)
|
||||
return a + b + c + d
|
||||
}
|
||||
Reference in New Issue
Block a user