1 // { dg-do assemble  }
2 // prms-id: 8175
3 
4 class AtoBoolC {
5 public:
6   AtoBoolC(const AtoBoolC& aBool);
7 private:
8   int myValue;
9 };
10 
11 struct TestCase {
12   AtoBoolC is_call_on_unack;
13 };
14 
15 static TestCase the_cases[] = { { 0 } };	// { dg-error "" }
16