blob: 630b02539031ff862f1059fc7e4089eedc929423 [file] [log] [blame]
class Collection<T> {}
class CommentCompletion<T> {
static {
Collection<Integer> c;
new CommentCompletion<Integer>(<caret>);
}
<E extends T> CommentCompletion(Collection<E> collection) {
}
}