Files
kotlin-fork/compiler/testData/diagnostics/tests/incompleteCode/illegalSelectorCallableReference.fir.kt
T
2020-01-23 12:32:39 +03:00

9 lines
186 B
Kotlin
Vendored

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