mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
11 lines
152 B
Kotlin
11 lines
152 B
Kotlin
// KT-2948 Assertion fails on a local enum
|
|
|
|
fun foo(): String {
|
|
enum class E {
|
|
OK
|
|
}
|
|
|
|
return E.OK.toString()
|
|
}
|
|
|
|
fun box(): String = foo() |