14 lines
247 B
Kotlin
Vendored
14 lines
247 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !DIAGNOSTICS: -UNUSED_EXPRESSION
|
|
|
|
class Unrelated()
|
|
|
|
class Test(val name: String = "") {
|
|
init {
|
|
Unrelated::<!UNRESOLVED_REFERENCE!>name<!>
|
|
Unrelated::<!UNRESOLVED_REFERENCE!>foo<!>
|
|
}
|
|
|
|
fun foo() {}
|
|
}
|