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