Add __builtion_unreachable to vector::size(), vector::capacity()
[official-gcc.git] / gcc / testsuite / c-c++-common / analyzer / data-model-12.c
blobe4a7fbdae442f3e2b97f5346ae5b813eee634e23
1 /* Mismatching decl of foo. */
2 /* { dg-additional-options "-std=gnu17" { target c } } */
4 int foo ();
6 int bar (void)
8 return foo() + 1;
11 int foo (int x, int y)
13 return x * y;