1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* { dg-do compile } */ /* { dg-options "-std=c99" } */ /* Decimal float keywords are not reserved for c99. */ int _Decimal32 (void) { return 0; } int foo (int i) { int _Decimal64 = i * 2; return _Decimal64; }