blob: 182ede5dc2dab804c0b8bd9f4189f12fba5550bf [file] [log] [blame]
package p;
class Tuple<T1, T2> {
private T1 t1;
private T2 t2;
public Tuple(T1 o1, T2 o2) {
t1= o1;
t2= o2;
}
}
class Main {
public static void main(String[] args) {
Tuple t= new Tuple(new String(), new Integer(10));
}
}