c++: prvalue of array type [PR111286]
[official-gcc.git] / gcc / testsuite / c-c++-common / diagnostic-units-3.c
blob714ee8f2de4f65d0357df2ac7f4da9dde931d6a3
1 /* { dg-do compile } */
2 /* { dg-additional-options "-fdiagnostics-column-unit=byte -fshow-column -fdiagnostics-show-caret -ftabstop=200 -Wmultichar" } */
4 /* column units: bytes (via arg)
5 column origin: 1 (via fallback from overly large argument)
6 tabstop: 8 (via default) */
8 /* This line starts with a tab. */
9 int c1 = 'c1'; /* { dg-warning "11: multi-character character constant" } */
10 /* { dg-begin-multiline-output "" }
11 int c1 = 'c1';
12 ^~~~
13 { dg-end-multiline-output "" } */
15 /* This line starts with <tabstop> spaces. */
16 int c2 = 'c2'; /* { dg-warning "18: multi-character character constant" } */
17 /* { dg-begin-multiline-output "" }
18 int c2 = 'c2';
19 ^~~~
20 { dg-end-multiline-output "" } */
22 /* This line starts with <tabstop> spaces and has an internal tab after
23 a space. */
24 int c3 = 'c3'; /* { dg-warning "19: multi-character character constant" } */
25 /* { dg-begin-multiline-output "" }
26 int c3 = 'c3';
27 ^~~~
28 { dg-end-multiline-output "" } */