Codegen for callable reference expressions
#KT-1183 In Progress
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
enum class E {
|
||||
I
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
val i = E.I.(E::name)()
|
||||
if (i != "I") return "Fail $i"
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user