1  /* Test that _Decimal* keywords are accepted in C2X mode: compat warnings.  */
       2  /* { dg-do compile } */
       3  /* { dg-options "-std=c2x -Wc11-c2x-compat" } */
       4  
       5  _Decimal32 d32; /* { dg-warning "ISO C does not support" } */
       6  _Decimal64 d64; /* { dg-warning "ISO C does not support" } */
       7  _Decimal128 d128; /* { dg-warning "ISO C does not support" } */