8 lines
132 B
Kotlin
Vendored
8 lines
132 B
Kotlin
Vendored
internal class C(private val s: String?) {
|
|
|
|
fun foo() {
|
|
if (s != null) {
|
|
print("not null")
|
|
}
|
|
}
|
|
} |