repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
opt
/
static2.C
blob
e2ecd13c57277a3d19c5d83797a67a85b79d111d
1
// Origin: reichelt@igpm.rwth-aachen.de
2
// PR 5571
3
// { dg-options "-O2" }
4
5
template <class T> struct A {};
6
7
struct B
8
{
9
static A<int> a;
10
void f() { a; }
11
};
12
13
A<int> B::a = A<int>();