#include using namespace std;struct A{int x;A(int _x=0): x(_x) {}};int main(){A *a=new A[10];return 0;}