class C {
  int c;
public:
  C(int n) : c(n) {}
};

int main() { C *cptr = new C[10](1); return 0; }