c++: Implement for namespace statics CWG 2867 - Order of initialization for structure...
[official-gcc.git] / gcc / testsuite / gcc.dg / pr105173.c
blob3effb2996b0474adea0d69cf016459bd72b85183
1 /* { dg-do compile { target dfp } } */
2 /* { dg-options "-Ofast" } */
4 int i;
6 int
7 foo(char c, _Decimal32 d)
9 d *= i;
10 d *= -(_Decimal64)c;
11 return d;