blob: 7c95d5eae896414ca1c70c1ca0ac41e006693d8a [file] [log] [blame]
// "Cast to 'java.util.List<java.lang.Integer>'" "true"
import java.lang.annotation.*;
import java.util.*;
import static java.lang.annotation.ElementType.*;
@Target({TYPE_USE}) @interface TA { }
class C {
{
Object o = null;
@TA <caret>List<@TA Integer> i = o;
}
}