Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / crash30.C
blob145b07673e9d73c009e5ac313f2ef9a4efd3e732
1 // PR c++/19034
3 template< bool C > struct B
5 };
7 template<typename S> int foo();
8 template<typename S> int foo1();
10 template<typename T> struct bar : public B <(sizeof(foo<T>()) == 1)>
14 template<typename T> struct bar1 : public B <(sizeof(foo1<T>()) == 1)>