Files
kotlin/compiler/testData/codegen/box/callableReference/local/enumExtendsTrait.kt
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

12 lines
155 B
Kotlin

fun box(): String {
trait Named {
fun name(): String
}
enum class E : Named {
OK
}
return E.OK.(Named::name)()
}