[FIR-TEST] Add new testdata generated after changes in previous commit
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
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
|
||||
Reference in New Issue
Block a user