blob: 6cc51471d8d8ca6ee0ef75c097a85f88664ec629 [file] [log] [blame]
import java.lang.annotation.*;
import java.util.*;
@Target(value = ElementType.TYPE_USE)
public @interface TA { }
class Test {
ArrayList<@TA Integer> list = new ArrayList<>(2);
}