blob: 8cc415da22168cd6b0d36cb8e6bb4d3a33a8bdf0 [file] [log] [blame]
package p2;
public class Y {
void bar() {
X<Object> x = new X<Object>();
x.foo(this);
}
Object foo() {
return new X<Object>(this);
}
}