blob: 51ac5ff1150c3e7335fc21c8b9a00d4b9b2099cc [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);
}
}