mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
17 lines
251 B
Kotlin
Vendored
17 lines
251 B
Kotlin
Vendored
// !CHECK_TYPE
|
|
// FILE: A.java
|
|
public enum A {
|
|
|
|
ENTRY {
|
|
public String s() {
|
|
return "s";
|
|
}
|
|
};
|
|
public abstract String s();
|
|
}
|
|
|
|
// FILE: test.kt
|
|
fun main() {
|
|
checkSubtype<String?>(A.ENTRY.s())
|
|
}
|