7 lines
81 B
Kotlin
Vendored
7 lines
81 B
Kotlin
Vendored
fun test() {
|
|
A().foo()
|
|
B().foo()
|
|
|
|
val a = A::foo
|
|
val b = B::foo
|
|
} |