Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 51ac5ff1150c3e7335fc21c8b9a00d4b9b2099cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package p2;
public class Y {
	void bar() {
		X<Object> x = new X<Object>();
		x.foo(this);
	}
	Object foo() {
		return new X<Object>(this);
	}
}

Back to the top