Files
kotlin-fork/compiler/testData/codegen/box/callableReference/local/classMember.kt
T
Alexander Udalov 363fe607fc Support local function references in codegen
#KT-3704 In Progress
 #KT-1183 In Progress
2013-12-24 20:41:19 +04:00

9 lines
122 B
Kotlin

fun box(): String {
class Local {
fun foo() = "OK"
}
val ref = Local::foo
return Local().ref()
}