17 lines
234 B
Kotlin
Vendored
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<!>
|
|
}
|