LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / compat / fnptr-by-value-1_main.c
blob35c94aaea6897dbe0b60b3ef159ce4e17a1e4f52
1 /* Test passing function pointers. */
3 extern void fnptr_by_value_1_x (void);
4 extern void exit (int);
5 int fails;
7 int
8 main ()
10 fnptr_by_value_1_x ();
11 exit (0);