Resolve callable reference expressions
#KT-1183 In Progress
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
class A
|
||||
|
||||
class B {
|
||||
fun A.ext() {
|
||||
val x = ::A
|
||||
val y = ::B
|
||||
|
||||
x : KFunction0<A>
|
||||
y : KFunction0<B>
|
||||
}
|
||||
|
||||
fun B.ext() {
|
||||
val x = ::A
|
||||
val y = ::B
|
||||
|
||||
x : KFunction0<A>
|
||||
y : KFunction0<B>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user