Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / ref1.C
blobad4628996b98c8416d0064b7cd74a2a7be634316
1 // { dg-do assemble  }
3 int i;
5 template <void (&FN)()>
6 void g ()
8   FN ();
11 void h ()
13   i = 7;
16 template void g<h>();