Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/callableReference/function/extensionOnNullable.kt
T
Alexander Udalov a9b2fd964b Support nullable types on left-hand side of ::
#KT-1183 In Progress
2014-06-26 20:57:39 +04:00

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>