Files
kotlin-fork/compiler/testData/cfg/bugs/functionalCallInEnumEntry.kt
T
2017-12-28 20:31:44 +03:00

5 lines
83 B
Kotlin
Vendored

enum class Test(f: () -> Unit) {
A(getFunc())
}
fun getFunc(): () -> Unit = {}