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