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