FIR IDE: Remove IGNORE_FIR from passing tests

This commit is contained in:
Ilya Kirillov
2020-05-26 13:11:55 +03:00
parent c6ae916b24
commit 00a271dd94
16 changed files with 0 additions and 32 deletions
@@ -1,5 +1,3 @@
// IGNORE_FIR
package a package a
class A() { class A() {
@@ -1,5 +1,3 @@
// IGNORE_FIR
package a package a
class MyPair { class MyPair {
@@ -1,5 +1,3 @@
// IGNORE_FIR
val v: UnknownClass<<caret>String> val v: UnknownClass<<caret>String>
// REF: (kotlin).String // REF: (kotlin).String
@@ -1,5 +1,3 @@
// IGNORE_FIR
val v: UnknownClass<<caret>String>() val v: UnknownClass<<caret>String>()
// REF: (kotlin).String // REF: (kotlin).String
@@ -1,5 +1,3 @@
// IGNORE_FIR
class Foo<T, V> class Foo<T, V>
class Bar: Foo<<caret>String class Bar: Foo<<caret>String
@@ -1,5 +1,3 @@
// IGNORE_FIR
package testing package testing
class TestClass(val test: (<caret>String) -> Int) class TestClass(val test: (<caret>String) -> Int)
@@ -1,5 +1,3 @@
// IGNORE_FIR
val x: Int <caret>by Foo() val x: Int <caret>by Foo()
class Foo class Foo
@@ -1,5 +1,3 @@
// IGNORE_FIR
val x: Int <caret>by Foo() val x: Int <caret>by Foo()
class Foo { class Foo {
@@ -1,5 +1,3 @@
// IGNORE_FIR
var x : Int <caret>by Baz() var x : Int <caret>by Baz()
interface Foo { interface Foo {
@@ -1,5 +1,3 @@
// IGNORE_FIR
val x: Int <caret>by lazy {1} val x: Int <caret>by lazy {1}
// REF: (for kotlin.Lazy<T> in kotlin).getValue(kotlin.Any?, kotlin.reflect.KProperty<*>) // REF: (for kotlin.Lazy<T> in kotlin).getValue(kotlin.Any?, kotlin.reflect.KProperty<*>)
@@ -1,5 +1,3 @@
// IGNORE_FIR
fun main(it: Iterator<Any>) { fun main(it: Iterator<Any>) {
for (i <caret>in it.iterator()) {} for (i <caret>in it.iterator()) {}
} }
@@ -1,5 +1,3 @@
// IGNORE_FIR
fun main() { fun main() {
for (i <caret>in 1..2) {} for (i <caret>in 1..2) {}
} }
@@ -1,5 +1,3 @@
// IGNORE_FIR
fun main() { fun main() {
for (i <caret>in "") {} for (i <caret>in "") {}
} }
@@ -1,5 +1,3 @@
// IGNORE_FIR
fun test(f: Foo) { fun test(f: Foo) {
for(i <caret>in f) {} for(i <caret>in f) {}
} }
@@ -1,5 +1,3 @@
// IGNORE_FIR
fun test(f: Foo) { fun test(f: Foo) {
for(i <caret>in f) {} for(i <caret>in f) {}
} }
@@ -1,5 +1,3 @@
// IGNORE_FIR
fun test(f: Foo) { fun test(f: Foo) {
for(i <caret>in f) {} for(i <caret>in f) {}
} }