This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / testsuite / gcc.dg / switch-7.c
blobd3fdfb4c38154c9971e49a39e2613c84b5dec7b7
1 /* Test diagnostics for switch statements and labels therein. Test
2 for case ranges with -pedantic-errors. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-pedantic-errors" } */
7 void
8 f (int a)
10 switch (a)
12 case 0 ... 0: ; /* { dg-error "error: range expressions in switch statements are non-standard" } */