Support bound callable references in codegen
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
fun box(): String {
|
||||
val f = "kotlin"::length
|
||||
val result = f.get()
|
||||
return if (result == 6) "OK" else "Fail: $result"
|
||||
}
|
||||
Reference in New Issue
Block a user