23 lines
146 B
Kotlin
Vendored
23 lines
146 B
Kotlin
Vendored
fun foo() {
|
|
|
|
}
|
|
|
|
class A {
|
|
fun foo() {
|
|
|
|
}
|
|
|
|
class B
|
|
}
|
|
|
|
fun A.bar() {
|
|
|
|
}
|
|
|
|
fun test() {
|
|
::foo
|
|
::A
|
|
A::B
|
|
A::foo
|
|
A::bar
|
|
} |