LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / compat / struct-return-21_main.c
blob34e0ab429969a80662d349ac20beccad7c1736cf
1 /* Test function return values. This was written when correcting
2 a deviation from the ABI on SPARC64 between 3.3 and 3.4. */
4 extern void struct_return_21_x (void);
5 extern void exit (int);
6 int fails;
8 int
9 main ()
11 struct_return_21_x ();
12 exit (0);