a9b2fd964b
#KT-1183 In Progress
9 lines
137 B
Kotlin
9 lines
137 B
Kotlin
class A {
|
|
fun foo() {}
|
|
}
|
|
|
|
fun A?.foo() {}
|
|
|
|
val f = A::foo : KMemberFunction0<A, Unit>
|
|
val g = A?::foo : KExtensionFunction0<A, Unit>
|