mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-22 08:31:31 +00:00
FIR IDE: Remove IGNORE_FIR from passing tests
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
// IGNORE_FIR
|
||||
|
||||
package a
|
||||
|
||||
class A() {
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
// IGNORE_FIR
|
||||
|
||||
package a
|
||||
|
||||
class MyPair {
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
// IGNORE_FIR
|
||||
|
||||
val v: UnknownClass<<caret>String>
|
||||
|
||||
// REF: (kotlin).String
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
// IGNORE_FIR
|
||||
|
||||
val v: UnknownClass<<caret>String>()
|
||||
|
||||
// REF: (kotlin).String
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
// IGNORE_FIR
|
||||
|
||||
class Foo<T, V>
|
||||
|
||||
class Bar: Foo<<caret>String
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
// IGNORE_FIR
|
||||
|
||||
package testing
|
||||
|
||||
class TestClass(val test: (<caret>String) -> Int)
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
// IGNORE_FIR
|
||||
|
||||
val x: Int <caret>by Foo()
|
||||
|
||||
class Foo
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
// IGNORE_FIR
|
||||
|
||||
val x: Int <caret>by Foo()
|
||||
|
||||
class Foo {
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
// IGNORE_FIR
|
||||
|
||||
var x : Int <caret>by Baz()
|
||||
|
||||
interface Foo {
|
||||
|
||||
@@ -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<*>)
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
// IGNORE_FIR
|
||||
|
||||
fun main(it: Iterator<Any>) {
|
||||
for (i <caret>in it.iterator()) {}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
// IGNORE_FIR
|
||||
|
||||
fun main() {
|
||||
for (i <caret>in 1..2) {}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
// IGNORE_FIR
|
||||
|
||||
fun main() {
|
||||
for (i <caret>in "") {}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
// IGNORE_FIR
|
||||
|
||||
fun test(f: Foo) {
|
||||
for(i <caret>in f) {}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
// IGNORE_FIR
|
||||
|
||||
fun test(f: Foo) {
|
||||
for(i <caret>in f) {}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
// IGNORE_FIR
|
||||
|
||||
fun test(f: Foo) {
|
||||
for(i <caret>in f) {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user