Fixed test data to use only annotation syntax with @
This commit is contained in:
+1
-1
@@ -1,2 +1,2 @@
|
||||
Deprecated class Test {
|
||||
@Deprecated class Test {
|
||||
}
|
||||
+1
-1
@@ -1,2 +1,2 @@
|
||||
Deprecated fun foo() {
|
||||
@Deprecated fun foo() {
|
||||
}
|
||||
+1
-1
@@ -1,2 +1,2 @@
|
||||
java.lang.Deprecated fun foo() {
|
||||
@java.lang.Deprecated fun foo() {
|
||||
}
|
||||
+2
-2
@@ -4,7 +4,7 @@ class SecondaryConstructors(x: Boolean) {
|
||||
init {
|
||||
}
|
||||
|
||||
anno constructor(x: String) : this(x == "abc") {
|
||||
@anno constructor(x: String) : this(x == "abc") {
|
||||
}
|
||||
|
||||
init {
|
||||
@@ -19,7 +19,7 @@ class SecondaryConstructors(x: Boolean) {
|
||||
}
|
||||
|
||||
class Nested {
|
||||
anno constructor(z: Int) {}
|
||||
@anno constructor(z: Int) {}
|
||||
internal constructor() {}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user