aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs165/pr272825/GenericSuper.java
blob: fef8ff23fba887e89d75c07d4c5d996efebcc95b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class GenericSuper<T> {

	public void doSomethingWith(T t) {
		System.out.println("with");
		System.out.println(t.toString());
	}
	
	public void doSomethingElseWith(T t) {
		System.out.println("else");
		System.out.println(t);
	}
	
}