]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/c2x-attr-fallthrough-3.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / c2x-attr-fallthrough-3.c
CommitLineData
f8aea5e3 1/* Test C2x attribute syntax. Invalid use of fallthrough attribute
6c80b1b5 2 outside switch. */
f8aea5e3
JM
3/* { dg-do compile } */
4/* { dg-options "-std=c2x -pedantic-errors -Wextra" } */
5
6int
7f (int a)
8{
9 [[fallthrough]]; /* { dg-error "invalid use of attribute 'fallthrough'" } */
f8aea5e3
JM
10 return a;
11}