blob: be7aa521000d993491255617efbba946eaaf6ecc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* Test for labels in statement expressions: bugs 772 and 17913.
switch statements must not jump into statement expressions. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "" } */
void
f (int a)
{
switch (a) /* { dg-message "here" } */
{
case 0:
case 1:
({
case 2: /* { dg-error "switch jumps into statement expression" } */
default: /* { dg-error "switch jumps into statement expression" } */
switch (a)
{
case 3:
default:
;
}
0;
});
}
}
|