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
testsuite: move single-file LTO pr47333 test to torture
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
tc1
/
dr48.C
blob
19c1738782235fcece512210253e6a01c8a72722
1
// { dg-do link }
2
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
3
// DR48: Definitions of unused static members
4
5
struct A {
6
static const int size = 10;
7
int array[size];
8
};
9
10
int main() {
11
A a;
12
return 0;
13
}