1 /* Test C11 static assertions. Invalid assertions. */
2 /* { dg-do compile } */
3 /* { dg-options "-std=c11 -pedantic-errors" } */
5 _Static_assert (__INT_MAX__
* 2, "overflow"); /* { dg-warning "integer overflow in expression" } */
6 /* { dg-error "overflow in constant expression" "error" { target *-*-* } 5 } */
8 _Static_assert ((void *)(__SIZE_TYPE__
)16, "non-integer"); /* { dg-error "not an integer" } */
10 _Static_assert (1.0, "non-integer"); /* { dg-error "not an integer" } */
12 _Static_assert ((int)(1.0 + 1.0), "non-constant-expression"); /* { dg-error "not an integer constant expression" } */
16 _Static_assert (i
, "non-constant"); /* { dg-error "not constant" } */
22 for (_Static_assert (sizeof (struct s
{ int k
; }), ""); j
< 10; j
++) /* { dg-error "loop initial declaration" } */
26 _Static_assert (1, 1); /* { dg-error "expected" } */
28 _Static_assert (1, ("")); /* { dg-error "expected" } */