mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
12 lines
146 B
Kotlin
Vendored
12 lines
146 B
Kotlin
Vendored
// !CHECK_TYPE
|
|
// FILE: A.java
|
|
public enum A {
|
|
ENTRY,
|
|
ANOTHER;
|
|
}
|
|
|
|
// FILE: test.kt
|
|
fun main() {
|
|
checkSubtype<Array<A>>(A.values())
|
|
}
|