1 // { dg-do assemble  }
2 // Bug: g++ can't deal with references to arrays.
3 
4 typedef float Matrix[4][4];
5 Matrix m;
f()6 Matrix& f () { return m; }
7