1  /* Test C2x constexpr.  Invalid code, compilation tests, excess precision.  */
       2  /* { dg-do compile } */
       3  /* { dg-options "-std=c2x -pedantic-errors -mfpmath=387 -fexcess-precision=standard" } */
       4  
       5  constexpr double d = 1.0 / 3.0; /* { dg-error "'constexpr' initializer not representable in type of object" } */
       6  constexpr double d2 = 1.1; /* { dg-error "'constexpr' initializer not representable in type of object" } */