Files
kotlin-fork/compiler/testData/diagnostics/tests/callableReference/packageInLhs.fir.kt
T

17 lines
180 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_EXPRESSION
// FILE: simpleName.kt
package foo
fun test() {
foo::test
}
// FILE: qualifiedName.kt
package foo.bar
fun test() {
foo.bar::test
}