]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/overflow-2.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / overflow-2.c
1 /* { dg-do compile } */
2 /* { dg-options "-std=c99 -pedantic-errors" } */
3
4 /* PR c/24599 */
5
6 int
7 main (void)
8 {
9 if ((_Bool)(__INT_MAX__ + 1)) /* { dg-warning "overflow in expression" } */
10 return 1;
11 else
12 return 0;
13 }