mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
10 lines
133 B
Kotlin
Vendored
10 lines
133 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
class A {
|
|
companion object {}
|
|
enum class E {
|
|
OK
|
|
}
|
|
}
|
|
|
|
fun box() = A.E.OK.toString()
|