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

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() {}
}