OSDN Git Service

* gcc.dg/cpp/cmdlne-dD-M.c: Fix test for makefile rule and remove
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / Wfatal-2.c
1 /* { dg-do compile } */
2 /* { dg-options "-Woverflow -Wdiv-by-zero -Werror -Wfatal-errors" } */
3 #include <limits.h>
4
5 int i = INT_MAX + 1; /* { dg-error "integer overflow in expression" } */
6 int k = 1 / 0; 
7 int j = INT_MIN - 1;
8 /* { dg-message "being treated as errors" "" { target *-*-* } 0 } */
9 /* { dg-message "terminated due to -Wfatal-errors" "" { target *-*-* } 0 } */