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: 5d7bd01953cd1c2fa93600fe913f77b1a685bc13 (plain) (blame)
1
2
3
4
5
6
7
8
package bug132665;
public class Bug132665<T> {
	public void foo1() {}
	public Bug132665<? extends java.lang.Object> foo2() {
		return null;
	}
	public void foo3() {}
}

Back to the top