(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
dfp/
c2x-constants-2.c
       1  /* Test that DFP constants are accepted in C2X mode: compat warnings.  */
       2  /* { dg-do compile } */
       3  /* { dg-options "-std=c2x -Wc11-c2x-compat" } */
       4  
       5  int a = (int) 1.1DF; /* { dg-warning "C2X feature" } */
       6  int b = (int) 2.df; /* { dg-warning "C2X feature" } */
       7  int c = (int) .33DD; /* { dg-warning "C2X feature" } */
       8  int d = (int) 2e1dd; /* { dg-warning "C2X feature" } */
       9  int e = (int) .3e2DL; /* { dg-warning "C2X feature" } */
      10  int f = (int) 4.5e3dl; /* { dg-warning "C2X feature" } */
      11  int g = (int) 5.e0DF; /* { dg-warning "C2X feature" } */
      12  int h = (int) 1e+2df; /* { dg-warning "C2X feature" } */
      13  int i = (int) 1000e-3DL; /* { dg-warning "C2X feature" } */