Add __builtion_unreachable to vector::size(), vector::capacity()
[official-gcc.git] / gcc / testsuite / gcc.dg / pr86271.c
blobf020c1b1e2fc2bdab790e43165e543c2f77ccb61
1 /* { dg-do compile } */
2 /* { dg-options "-fpermissive -O2" } */
4 int main ()
6 int i;
7 foobar (i, &i); /* { dg-warning "implicit declaration" } */
10 int foobar (int a, long long b)
12 int c;
14 c = a % b;
15 a = a / b;
16 return a + b;