blob: 0a8552093f8a004edad097db27f7b61c1866429b [file]
// FIR_IDENTICAL
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