LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / compat / struct-by-value-3_main.c
blob0b720689531c2bc1ccc29375ac9b2a32e0e7d010
1 /* Test structures passed by value, including to a function with a
2 variable-length argument list. All struct members are scalar
3 integral types, and the structs are "small": 1, 2, 4, 8, and 12
4 bytes for LP64. */
6 extern void struct_by_value_3_x (void);
7 extern void exit (int);
8 int fails;
10 int
11 main ()
13 struct_by_value_3_x ();
14 exit (0);