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

9 lines
132 B
Kotlin
Vendored

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