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

View File

@@ -1,5 +1,3 @@
// IGNORE_FIR
package a
class A() {

View File

@@ -1,5 +1,3 @@
// IGNORE_FIR
package a
class MyPair {

View File

@@ -1,5 +1,3 @@
// IGNORE_FIR
val v: UnknownClass<<caret>String>
// REF: (kotlin).String

View File

@@ -1,5 +1,3 @@
// IGNORE_FIR
val v: UnknownClass<<caret>String>()
// REF: (kotlin).String

View File

@@ -1,5 +1,3 @@
// IGNORE_FIR
class Foo<T, V>
class Bar: Foo<<caret>String

View File

@@ -1,5 +1,3 @@
// IGNORE_FIR
package testing
class TestClass(val test: (<caret>String) -> Int)

View File

@@ -1,5 +1,3 @@
// IGNORE_FIR
val x: Int <caret>by Foo()
class Foo

View File

@@ -1,5 +1,3 @@
// IGNORE_FIR
val x: Int <caret>by Foo()
class Foo {

View File

@@ -1,5 +1,3 @@
// IGNORE_FIR
var x : Int <caret>by Baz()
interface Foo {

View File

@@ -1,5 +1,3 @@
// IGNORE_FIR
val x: Int <caret>by lazy {1}
// REF: (for kotlin.Lazy<T> in kotlin).getValue(kotlin.Any?, kotlin.reflect.KProperty<*>)

View File

@@ -1,5 +1,3 @@
// IGNORE_FIR
fun main(it: Iterator<Any>) {
for (i <caret>in it.iterator()) {}
}

View File

@@ -1,5 +1,3 @@
// IGNORE_FIR
fun main() {
for (i <caret>in 1..2) {}
}

View File

@@ -1,5 +1,3 @@
// IGNORE_FIR
fun main() {
for (i <caret>in "") {}
}

View File

@@ -1,5 +1,3 @@
// IGNORE_FIR
fun test(f: Foo) {
for(i <caret>in f) {}
}

View File

@@ -1,5 +1,3 @@
// IGNORE_FIR
fun test(f: Foo) {
for(i <caret>in f) {}
}

View File

@@ -1,5 +1,3 @@
// IGNORE_FIR
fun test(f: Foo) {
for(i <caret>in f) {}
}