1 /* Test that DFP constants and _Decimal64x keyword are diagnosed in C11 mode: -pedantic-errors. */
2 /* { dg-do compile } */
3 /* { dg-options "-std=c11 -pedantic-errors" } */
5 int a
= (int) 1.1D64x
; /* { dg-error "C23 feature" } */
6 int b
= (int) 2.d64x
; /* { dg-error "C23 feature" } */
7 _Decimal64x c
= 1; /* { dg-error "ISO C does not support decimal floating-point before C23" } */