Skip to main content
summaryrefslogtreecommitdiffstats
blob: e9c2e87870b730a7484bd9de6d88a3bfac3e47f4 (plain) (blame)
1
2
3
4
5
6
7
8
//6, 12, 6, 12
package p;

class A<T> {
	void m(T arg) {
		T myT= arg;
	}
}

Back to the top