Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / nontype2.C
blobfe7e71537b8235f13dd2e9e4675d724fbd85d25a
1 template <bool> struct A {};
2  
3 template <bool> struct B
5   void foo()
6   {
7     const int i=0;
8     typedef A< i<=1 > C;
9     typedef A< i<=2 > C;
10   }