12 lines
143 B
Kotlin
Vendored
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()
|
|
}
|
|
} |