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

8 lines
132 B
Kotlin
Vendored

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