2 // GROUPS passed copy-ctors
16 The output should be something like (produced from ATT 2.1)
21 Item(const Item& i) <------ missing above
31 extern "C" int printf (const char *, ...);
32 extern "C" void exit (int);
50 Item(const Item& i) { die (4); }
51 ~Item() { count++; if (count != 7 && count != 10) die (-1); }
58 Compound() { die (2); }
59 ~Compound() { count++; if (count != 6 && count != 9) die (-1); }