Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
ref2.C
blob: 0fd789371e4efd062f7c48aa9e8b78bfaaf268df [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Bug: g++ can't deal with references to arrays.
typedef
float
Matrix
[
4
][
4
];
Matrix
m
;
Matrix
&
f
()
{
return
m
;
}