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