c4b4fa750c
#KT-1183 In Progress
16 lines
178 B
Kotlin
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>
|
|
}
|
|
}
|