blob: 7b72a408cdcb2638ea26991844f90b2d2d81f960 [file] [log] [blame]
package p;
class A {
void m() {
Cell c= new Cell();
c.put("X");
Cell nested= new Cell();
nested.put(c);
}
}