Files
kotlin-fork/native/native.tests/testData/codegen/enum/openMethodNoOverrides.kt
T
2024-01-02 18:47:05 +00:00

13 lines
148 B
Kotlin
Vendored

// MODULE: lib
// FILE: lib.kt
enum class Foo {
Z;
open fun bar() = "OK"
}
// MODULE: main(lib)
// FILE: main.kt
fun box() = Foo.Z.bar()