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

9 lines
129 B
Kotlin
Vendored

fun box(): String {
if (true) <!INVISIBLE_MEMBER!>X::y<!> else null
return "OK"
}
object X {
private val y = null
}