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
Dead
[official-gcc.git]
/
gomp-20050608-branch
/
gcc
/
testsuite
/
g++.dg
/
template
/
spec27.C
blob
a31adadd3e6112c506cc9816910810b8ceb7da5a
1
// PR c++/24139
2
3
template<typename T>
4
struct O {
5
struct I;
6
};
7
8
template<>
9
struct O<int>::I
10
{
11
I();
12
};
13
14
O<int>::I::I() {}