Adjust testData: get rid of obsolete annotations
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
annotation class foo(val n: Int)
|
||||
|
||||
class Test([foo(1) foo(2)] [foo(3)] private val s: String, n: Int)
|
||||
class Test(@foo(1) @foo(2) @foo(3) private val s: String, n: Int)
|
||||
@@ -1,3 +1,3 @@
|
||||
annotation class foo(val n: Int)
|
||||
|
||||
class <caret>Test([foo(1) foo(2)] [foo(3)] private val s: String)
|
||||
class <caret>Test(@foo(1) @foo(2) @foo(3) private val s: String)
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
// SIBLING:
|
||||
class MyClass {
|
||||
fun test() {
|
||||
<selection>[P] val t: Int = 1
|
||||
<selection>@[P] val t: Int = 1
|
||||
t</selection>
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -8,6 +8,6 @@ class MyClass {
|
||||
}
|
||||
|
||||
private fun __dummyTestFun__() {
|
||||
[MyClass.P] val t: Int = 1
|
||||
@[MyClass.P] val t: Int = 1
|
||||
t
|
||||
}
|
||||
Reference in New Issue
Block a user