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
2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
label7.C
blob
e92dccf5df5a2fd190dda2b514829bb4e4b93dd9
1
// PR c++/32121
2
// { dg-do compile }
3
4
int 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
}