blob: e89288b11d1aaff6ccd6f38fc20167aa32697b46 [file] [log] [blame]
package p;
class PairDance {
public static void main(String[] args) {
InvertedPair/*<Integer, Double>*/ ip= new InvertedPair/*<Integer, Double>*/();
Pair/*<Double, Integer>*/ p= ip;
p.setA(new Double(1.1));
Double a= (Double) ip.getA();
ip.setB(new Integer(2));
System.out.println(ip);
}
}