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
2013-05-29 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
init
/
pr55497.C
blob
b50f3fbdfb9d2f1369e3ca64efe1704f5257ad4f
1
// PR c++/55497
2
// { dg-options "-g" }
3
4
int get();
5
6
struct B
7
{
8
B()
9
{
10
static const int v = get();
11
char BUFFER[v];
12
}
13
};
14
15
B b;