Files
kotlin-fork/idea/testData/quickfix/autoImports/withSmartCastQualifier.after.kt
T
2021-05-12 16:28:30 +00:00

15 lines
174 B
Kotlin
Vendored

// "Import" "true"
// ERROR: Unresolved reference: foo
package c
import g.foo
class B
fun test(a: Any) {
if (a is B) {
a.<caret>foo()
}
}
/* IGNORE_FIR */