Codegen for callable reference expressions
#KT-1183 In Progress
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
class A {
|
||||
fun foo(result: String) = result
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
val x = A::foo
|
||||
return A().x("OK")
|
||||
}
|
||||
Reference in New Issue
Block a user