1 struct A
2 {
3   int i;
4   A(int);
5 };
6 
7 struct B
8 {
9   virtual void f();
10   A ar[3];
11 };
12 
13 extern B b;
14 B b2(b);
15