PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / parser-pr28152.c
blob7e35b4c161447644ab8555cf07a80cc064b5a737
1 /* PR 28152: error messages should mention _Complex */
2 /* { dg-do compile } */
3 /* { dg-options "" } */
4 int
5 main (void)
7 _Complex float z;
9 z = _Complex (1.90000007326203904e+19, 0.0); /* { dg-error "_Complex" } */
10 z = _Complex (1.0e+0, 0.0) / z; /* { dg-error "_Complex" "_Complex" } */
11 /* { dg-error "at end of input" "end of input" { target *-*-* } .-1 } */