Files
kotlin-fork/compiler/testData/diagnostics/tests/incompleteCode/illegalSelectorCallableReference.fir.kt
T

9 lines
186 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_EXPRESSION
fun test() {
"a"."b"::<!UNRESOLVED_REFERENCE!>foo<!>
"a"."b"::class
"a"."b"."c"::<!UNRESOLVED_REFERENCE!>foo<!>
"a"."b"."c"::class
}