7 lines
95 B
Plaintext
Vendored
7 lines
95 B
Plaintext
Vendored
class My {
|
|
fun foo(): String? = null
|
|
}
|
|
|
|
fun test(my: My?) {
|
|
if (my?.foo() != null) {}
|
|
} |