9 lines
130 B
Kotlin
9 lines
130 B
Kotlin
class C {
|
|
private val s = x()
|
|
|
|
fun foo() {
|
|
if (s == null) {
|
|
System.out.print("null")
|
|
}
|
|
}
|
|
} |