1 2 3 4 5
// { dg-do assemble } struct A { A() { a = 1; } int a; }; // { dg-error "" } struct A { A() { a = 2; } int a; }; // { dg-error "" } A aavv;