mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
16 lines
221 B
Kotlin
16 lines
221 B
Kotlin
// FILE: A.java
|
|
public enum A {
|
|
|
|
ENTRY {
|
|
public String s() {
|
|
return "s";
|
|
}
|
|
};
|
|
public abstract String s();
|
|
}
|
|
|
|
// FILE: test.kt
|
|
fun main() {
|
|
A.ENTRY.s(): String?
|
|
}
|