repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ipa-cp: Perform operations in the appropriate types (PR 118097)
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
defarg20.C
blob
de8aac11ec213a451061e53012d571e5b157b763
1
// PR c++/53856
2
3
struct A
4
{
5
template<typename T>
6
struct B;
7
};
8
9
template<typename T = int>
10
struct A::B
11
{
12
int i;
13
};
14
15
A::B<int> b = { };