10 lines
162 B
Kotlin
Vendored
10 lines
162 B
Kotlin
Vendored
// ERROR: Unresolved reference: x
|
|
internal class C {
|
|
private val s = x()
|
|
|
|
fun foo() {
|
|
if (s == null) {
|
|
print("null")
|
|
}
|
|
}
|
|
} |