]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/c11-static-assert-2.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / c11-static-assert-2.c
CommitLineData
1bec9d5f 1/* Test C11 static assertions. Failed assertions. */
32912286 2/* { dg-do compile } */
1bec9d5f 3/* { dg-options "-std=c11 -pedantic-errors" } */
32912286
JM
4
5_Static_assert (0, "assert1"); /* { dg-error "static assertion failed: \"assert1\"" } */
6
7enum e { E0, E1 };
8
9_Static_assert (E0, L"assert2"); /* { dg-error "static assertion failed: \"assert2\"" } */
10
11_Static_assert (-0, "ass" L"ert3"); /* { dg-error "static assertion failed: \"assert3\"" } */
12
13struct s
14{
15 int a;
16 _Static_assert (0, "assert4"); /* { dg-error "static assertion failed: \"assert4\"" } */
17 int b;
18};
19
20union u
21{
22 int i;
23 _Static_assert ((int)0.0, L"assert5"); /* { dg-error "static assertion failed: \"assert5\"" } */
24};
25
26void
27f (void)
28{
29 int i;
30 i = 1;
31 _Static_assert (0 + 0, "assert6"); /* { dg-error "static assertion failed: \"assert6\"" } */
32 i = 2;
33}
34
35void
36g (void)
37{
38 int i = 0;
39 for (_Static_assert (0, "assert7"); i < 10; i++) /* { dg-error "static assertion failed: \"assert7\"" } */
40 ;
41}