5 lines
83 B
Kotlin
Vendored
5 lines
83 B
Kotlin
Vendored
enum class Test(f: () -> Unit) {
|
|
A(getFunc())
|
|
}
|
|
|
|
fun getFunc(): () -> Unit = {} |