Files

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
}