c4b4fa750c
#KT-1183 In Progress
12 lines
132 B
Kotlin
12 lines
132 B
Kotlin
fun foo() {}
|
|
|
|
class A {
|
|
fun foo() {}
|
|
|
|
fun main() {
|
|
val x = ::foo
|
|
|
|
x : KMemberFunction0<A, Unit>
|
|
}
|
|
}
|