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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
friend60.C
blob
5ba9ab2f402236b835a9cc4c82117deeb815a2dd
1
// PR c++/68170
2
3
template< typename T >
4
class A
5
{
6
};
7
8
template<>
9
class A< void >
10
{
11
template< typename X >
12
friend class A;
13
};