mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
16 lines
160 B
Kotlin
Vendored
16 lines
160 B
Kotlin
Vendored
// FILE: test/En.java
|
|
|
|
package test;
|
|
|
|
public enum En {
|
|
A;
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
|
|
import test.En.A
|
|
|
|
fun box() =
|
|
if (A.toString() == "A") "OK"
|
|
else "fail"
|