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

12 lines
143 B
Kotlin
Vendored

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