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

13 lines
176 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_EXPRESSION
class Unrelated()
class Test(val name: String = "") {
init {
Unrelated::name
Unrelated::foo
}
fun foo() {}
}