Fix test-suite fallout of default -Wreturn-type.
[official-gcc.git] / gcc / testsuite / g++.dg / warn / multiple-overflow-warn-3.C
blob19eac3a9f20738046e241fba01eb2ea7091a529d
1 /* PR 30465 : Test for duplicated warnings in a conversion.  */
2 /* { dg-do compile } */
3 /* { dg-options "-Woverflow" } */
5 short int
6 g (void)
8   short int wc = ((short int)1 << 31) - 1; /* { dg-bogus "overflow .* overflow" } */
9   /* { dg-warning "overflow" "" { target *-*-* } .-1 } */
10   return wc;