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

16 lines
178 B
Kotlin

class A {
fun main() {
val x = ::A
x : KFunction0<A>
}
}
class SomeOtherClass {
fun main() {
val x = ::A
x : KFunction0<A>
}
}