bitint: Fix up lowering of COMPLEX_EXPR [PR115544]
[official-gcc.git] / gcc / testsuite / g++.dg / pr66655.C
blobe4a40b02912db0eb0850d292aa017051eb334b9d
1 /* { dg-do run } */
2 /* { dg-additional-sources "pr66655_1.cc" } */
4 #include "pr66655.h"
6 extern "C" void abort (void);
8 #define COOKIE 0xabcd0123
10 int32_t
11 g (void)
13   return COOKIE;
16 extern int32_t f (void);
18 int
19 main (void)
21   S::set(0);
22   if (f () != COOKIE)
23     abort ();
24   return 0;