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