OSDN Git Service

2010-04-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / Wdiv-by-zero.C
1 // test that division by zero warnings are enabled by default
2 int breakme()
3 {
4   int x = 0;
5   x /= 0;          // { dg-warning "division by" }
6   return x;
7 }