1package annotations.tests.classfile.foo: 2annotation @A: @Retention(value=RUNTIME) @java.lang.annotation.Target(value={TYPE_USE}) 3annotation @B: @Retention(value=RUNTIME) @java.lang.annotation.Target(value={TYPE_USE}) 4 String value 5 6package annotations.tests.classfile.cases: 7class TestFieldSimple: @annotations.tests.classfile.foo.A 8 field i: @annotations.tests.classfile.foo.A 9 field j: @annotations.tests.classfile.foo.B(value="Hello") 10 field o: @annotations.tests.classfile.foo.A @annotations.tests.classfile.foo.B(value="H") 11 field s: @annotations.tests.classfile.foo.B(value="E") 12 13