19 lines
247 B
Kotlin
Vendored
19 lines
247 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// FILE: E.java
|
|
public enum E {
|
|
A();
|
|
public static String values(String s) {
|
|
return s;
|
|
}
|
|
}
|
|
|
|
// FILE: test.kt
|
|
|
|
fun f(e: E) = when (e) {
|
|
E.A -> E.values("OK")
|
|
}
|
|
|
|
fun box(): String {
|
|
return f(E.A)
|
|
}
|