Fix FE1.0 plugin testdata after adding // IGNORE_FIR directive

This commit is contained in:
Ilya Kirillov
2021-06-10 19:01:34 +02:00
parent bc306a5195
commit c4b1fa8ec0
9 changed files with 12 additions and 3 deletions
@@ -5,3 +5,4 @@ open class A {
}
class B : A<caret>() {}
/* IGNORE_FIR */
@@ -18,3 +18,4 @@ interface Z {
class B : A(), X, Y, Z {
override<caret> fun foo() {}
}
/* IGNORE_FIR */
@@ -16,3 +16,4 @@ class B(y: XX) : A(y) {
override fun foo() {
}
}
/* IGNORE_FIR */
@@ -16,3 +16,4 @@ class B() : Y {
override fun foo() {
}
}
/* IGNORE_FIR */
@@ -5,4 +5,5 @@ open class A {
class B : A() {
override<caret> fun foo() {}
}
}
/* IGNORE_FIR */
@@ -7,4 +7,5 @@ fun test() {
val some = object : A() {
<caret>override fun foo() {}
}
}
}
/* IGNORE_FIR */
@@ -5,4 +5,5 @@ open class A {
class B : A() {
override<caret> var x = 24;
}
}
/* IGNORE_FIR */
@@ -13,3 +13,4 @@ class B : A(), X {
return arg
}
}
/* IGNORE_FIR */
@@ -9,3 +9,4 @@ class B : A() {
return arg
}
}
/* IGNORE_FIR */