Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gcc.dg
/
c11-labels-1.c
blob: 6350403bf3880d03eb70bf41d9af0dbde7cd978a [
file
] [
log
] [
blame
]
/* Tests for labels before declarations and at ends of compound statements. */
/* { dg-do compile } */
/* { dg-options "-std=c11" } */
int
f
(
int
x
)
{
goto
b
;
a
:
int
i
=
2
*
x
;
goto
c
;
b
:
goto
a
;
{
i
*=
3
;
c
:
}
return
i
;
d
:
}