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
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
friend38.C
blob
41faf79110cffd8ab9cbaf85f719be9eac8e0eef
1
// PR c++/22352
2
3
template <class A>
4
class s
5
{
6
typedef int d;
7
template <class s, typename s::d>
8
friend class t;
9
};
10
11
s<int> t1;
12