blob: 3fc443dad610659188cd67756b279f5faf9c5d43 [file] [log] [blame]
import java.lang.annotation.*;
import java.util.*;
@Target({ElementType.TYPE_USE})
@interface TA { }
class Test {
@TA List<@TA String> foo() {
return null;
}
}