Fixed test data to use only annotation syntax with @
This commit is contained in:
+1
-1
@@ -1,5 +1,5 @@
|
||||
// "Create annotation 'foo'" "true"
|
||||
|
||||
<caret>foo(1, "2") fun test() {
|
||||
@<caret>foo(1, "2") fun test() {
|
||||
|
||||
}
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
// "Create annotation 'foo'" "true"
|
||||
|
||||
foo(1, "2") fun test() {
|
||||
@foo(1, "2") fun test() {
|
||||
|
||||
}
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
// "Create annotation 'foo'" "true"
|
||||
// ERROR: Unresolved reference: foo
|
||||
|
||||
J.foo(1, "2") fun test() {
|
||||
@J.foo(1, "2") fun test() {
|
||||
|
||||
}
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
// "Create annotation 'foo'" "true"
|
||||
// ERROR: Unresolved reference: foo
|
||||
|
||||
J.<caret>foo(1, "2") fun test() {
|
||||
@J.<caret>foo(1, "2") fun test() {
|
||||
|
||||
}
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
// "Create annotation 'foo'" "true"
|
||||
// ERROR: Unresolved reference: foo
|
||||
|
||||
J.foo(count = 1, name = "2") fun test() {
|
||||
@J.foo(count = 1, name = "2") fun test() {
|
||||
|
||||
}
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
// "Create annotation 'foo'" "true"
|
||||
// ERROR: Unresolved reference: foo
|
||||
|
||||
J.<caret>foo(count = 1, name = "2") fun test() {
|
||||
@J.<caret>foo(count = 1, name = "2") fun test() {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user