1// Build don't link:
2// GROUPS passed initialization
3class test
4 {
5  public:
6   int x;
7   int y;
8   test (int val) { x = val; y = 0;}
9 };
10
11test ar(34)[5];// ERROR - .*
12