OSDN Git Service
(root)
/
pf3gnuchains
/
gcc-fork.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
PR c++/41090
[pf3gnuchains/gcc-fork.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
label13.C
1
// PR c++/41090
2
// { dg-do run }
3
// { dg-options "" }
4
5
int i;
6
struct C
7
{
8
C()
9
{
10
static void *labelref = &&label;
11
goto *labelref;
12
label: i = 1;
13
}
14
};
15
16
int main()
17
{
18
C c;
19
return (i != 1);
20
}