Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.jason / ref5.C
blob3ab3442884a9d5676e54fd51a8a774ea235b2e8f
1 // { dg-do assemble  }
3 int i;
4 int &const j = i;               // { dg-error "" } invalid const
5 int &const f();                 // { dg-error "" } invalid const
6 void g ()
8   j = 1;
9   f() = 1;