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

17 lines
234 B
Kotlin
Vendored

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