blob: c577264e70d04adb5f2db673fd1236fb6461594b [file] [log] [blame]
=== Test.java ===
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
@Target(ElementType.TYPE_USE) @interface A {}
@Target(ElementType.TYPE_USE) @interface B {}
class Test<T> {
private T @A [] [] @B [] values;
}