LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / ipa / pr57294.c
blob0871f3f41832dea054fdebb2f48fda82c138d0ac
1 /* { dg-do compile } */
2 /* { dg-options "-O3" } */
4 void baz (void);
5 int func ();
7 static void
8 bar (int a, int foo (void))
10 baz ();
11 foo ();
14 void
15 baz (void)
17 bar (0, func);