Remove IGNORE_FIR directive from already green tests

This commit is contained in:
Roman Golyshev
2021-05-12 12:09:25 +03:00
committed by Space
parent 4adb291a12
commit d7a91cb05e
21 changed files with 14 additions and 42 deletions
+1 -3
View File
@@ -4,6 +4,4 @@ interface I {
}
<caret>class A : I {
}
/* IGNORE_FIR */
}
@@ -4,6 +4,4 @@ interface I {
}
abstract class A : I {
}
/* IGNORE_FIR */
}
@@ -4,6 +4,4 @@ abstract class A {
}
<caret>class B : A() {
}
/* IGNORE_FIR */
}
@@ -4,6 +4,4 @@ abstract class A {
}
abstract class B : A() {
}
/* IGNORE_FIR */
}
+1 -2
View File
@@ -1,5 +1,4 @@
// "Replace with safe (?.) call" "true"
fun foo(a: Int?) {
a<caret>.plus(1)
}
/* IGNORE_FIR */
}
+1 -2
View File
@@ -1,5 +1,4 @@
// "Replace with safe (?.) call" "true"
fun foo(a: Int?) {
a?.plus(1)
}
/* IGNORE_FIR */
}
+1 -3
View File
@@ -11,6 +11,4 @@ interface Pipeline<TPipeline> {
<caret>class IterablePipeline<T> : Pipeline<T> {
override fun pipe(block: Pipeline<T>) {
}
}
/* IGNORE_FIR */
}
+1 -3
View File
@@ -11,6 +11,4 @@ interface Pipeline<TPipeline> {
abstract class IterablePipeline<T> : Pipeline<T> {
override fun pipe(block: Pipeline<T>) {
}
}
/* IGNORE_FIR */
}
+1 -2
View File
@@ -2,5 +2,4 @@
class B {
<caret>external val foo: Int = 23
}
/* IGNORE_FIR */
}
@@ -2,5 +2,4 @@
class B {
val foo: Int = 23
}
/* IGNORE_FIR */
}
+1 -2
View File
@@ -2,5 +2,4 @@
// WITH_RUNTIME
fun foo(a: String?) {
a<caret>.toLowerCase()
}
/* IGNORE_FIR */
}
@@ -2,5 +2,4 @@
// WITH_RUNTIME
fun foo(a: String?) {
a?.toLowerCase()
}
/* IGNORE_FIR */
}
@@ -2,5 +2,4 @@
class Test {
var foo<caret>
get() = 1
}
/* IGNORE_FIR */
}
@@ -2,5 +2,4 @@
class Test {
val foo
get() = 1
}
/* IGNORE_FIR */
}