mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
10 lines
84 B
Kotlin
10 lines
84 B
Kotlin
class Foo {
|
|
fun foo() {}
|
|
}
|
|
|
|
fun Any?.foo() {}
|
|
|
|
fun test(f : Foo?) {
|
|
f.foo()
|
|
}
|