repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* doc/extend.texi (Loop-Specific Pragmas): Document pragma GCC unroll.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
label7.C
blob
d74a66aa224797772855deb3be2184ad8bfa8eff
1
// PR c++/32121
2
// { dg-do compile }
3
4
void f (void)
5
{
6
a:;
7
__label__ a; // { dg-error "not at the beginning" }
8
int b;
9
__label__ c; // { dg-error "not at the beginning" }
10
a:; // { dg-error "duplicate label" }
11
c:;
12
}