Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / sfinae2.C
blob89880a85f4345f1583d83ccb783ff80d5a3dbe60
1 // PR c++/19989
2 // Don't instantiate a function template if it would generate an
3 //   array of size zero.
5 // { dg-do compile }
7 template<int T> struct cl {
8   const static int value = T;
9 };
11 template<int I> void fn (char (*) [cl<I>::value] = 0 );
13 void foo (void)
15   fn<0> ();  // { dg-error "no matching function" }