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