blob: 3a253ed08ae5579ef3d78e468bb5a5d5882a548d [file] [log] [blame]
class List<P> {
P p;
}
class Pair<X, Y>{
X x;
Y y;
}
class Test {
void f(){
List<Pair> a = null;
a.p.x = "";
a.p.y = new Integer(3);
}
}