blob: 7466a4088927c7a5994288b80e0afd9aff64bcce [file] [log] [blame]
package test0048;
public class Test<E> {
void bar(E e) {
}
void foo() {
Test<? extends Object> l= new Test<Object>();
l.ba
}
}