13 lines
137 B
Kotlin
Vendored
13 lines
137 B
Kotlin
Vendored
fun a(): Int {
|
|
return 42
|
|
}
|
|
|
|
val b: Int = 2
|
|
|
|
fun c(p: Int) {
|
|
if (p == null);
|
|
}
|
|
|
|
fun check() {
|
|
if (a() == null || b == null);
|
|
} |