blob: cea70111e9d497863cb5669d40dd432acea9c5b5 [file] [log] [blame]
// FILE: test/Foo.java
package test;
public class Foo {
public enum MyEnum {
A;
}
}
// FILE: 1.kt
import test.*
import test.Foo.MyEnum.A
fun box() =
if (Foo.MyEnum.A.toString() == "A" && A.toString() == "A") "OK"
else "fail"