Files
kotlin/compiler/testData/diagnostics/tests/enum/enumIsAssignableToBuiltInEnum.kt
2015-09-23 12:18:12 +03:00

15 lines
288 B
Kotlin
Vendored

import java.lang.annotation.RetentionPolicy
enum class E {
ENTRY
}
// Test resolve from source
val a: Enum<E> = E.ENTRY
// Test Java resolve
val b: Enum<RetentionPolicy> = RetentionPolicy.RUNTIME
// Test deserialized resolve
val c: Enum<AnnotationTarget> = AnnotationTarget.CLASS