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
/
friend61.C
blob
1604f5c904e07406c8f9990ae25c70446971c191
1
// PR c++/69323
2
3
template<int VALUE>
4
struct Outer
5
{
6
struct StupidValueTrick
7
{
8
template<int VAL> friend struct Outer<VAL>::StupidValueTrick;
9
};
10
};
11
typedef Outer<42>::StupidValueTrick GoodValue;
12
GoodValue good;