Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / warn / Wswitch-default-2.C
blob832f867e07999a9a63fa7a127165bd7817731e3f
1 // PR C++/21123
2 /* { dg-do compile } */
3 /* { dg-options "-Wswitch-default" } */
6 template <typename ArrayType>
7 void foo( )
9     int i = 0;
11   switch ( i ) /* { dg-warning "switch missing default case" } */
12   {
13   case 9:
14   break;
15   }
16
18 void f()
20   foo<int>();
21