mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
12 lines
153 B
Kotlin
12 lines
153 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()
|