OSDN Git Service

PR c++/37276
[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 }