Files
kotlin-fork/idea/testData/quickfix/autoImports/withSmartCastQualifier.after.kt
T
2014-10-01 18:52:52 +04:00

14 lines
157 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()
}
}