Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
label7.C
blob: d74a66aa224797772855deb3be2184ad8bfa8eff [
file
] [
log
] [
blame
]
// PR c++/32121
// { dg-do compile }
void
f
(
void
)
{
a
:;
__label__ a
;
// { dg-error "not at the beginning" }
int
b
;
__label__ c
;
// { dg-error "not at the beginning" }
a
:;
// { dg-error "duplicate label" }
c
:;
}