Files
kotlin-fork/idea/testData/quickfix/autoImports/withAutoCastedQualifier.before.Main.kt
T
Valentin Kipyatkov 855cc2443f KT-4976 Completion ignores smart casts
#KT-4976 Fixed
 #KT-5718 Fixed
2014-09-03 15:43:25 +04:00

12 lines
143 B
Kotlin

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