Files
kotlin/compiler/testData/codegen/boxWithStdlib/callableReference/function/local/enumExtendsTrait.kt
2015-05-12 19:43:17 +02:00

12 lines
131 B
Kotlin

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