PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / spellcheck-fields-2.C
blobeb10b44e59e05fdda2ee3cb55d885f396e3424c7
1 // { dg-options "-fdiagnostics-show-caret" }
3 union u
5   int color;
6   int shape;
7 };
9 int test (union u *ptr)
11   return ptr->colour; // { dg-error "did you mean .color.?" }
14 // Verify that we get an underline and a fixit hint.
15 /* { dg-begin-multiline-output "" }
16    return ptr->colour;
17                ^~~~~~
18                color
19    { dg-end-multiline-output "" } */