7 lines
83 B
Kotlin
7 lines
83 B
Kotlin
fun Any?.foo() {}
|
|
|
|
fun test(a: Any?) {
|
|
if (a != null) {
|
|
a.foo()
|
|
}
|
|
} |