Files
kotlin-fork/compiler/testData/diagnostics/tests/callableReference/longQualifiedName.kt
T
Alexander Udalov c4b4fa750c Resolve callable reference expressions
#KT-1183 In Progress
2013-04-22 17:59:31 +04:00

16 lines
157 B
Kotlin

// FILE: a.kt
package a.b.c
class D {
fun foo() = 42
}
// FILE: b.kt
fun main() {
val x = a.b.c.D::foo
x : KMemberFunction0<a.b.c.D, Int>
}