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
* testsuite/libgomp.fortran/vla7.f90: Add -w to options.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.benjamin
/
13523.C
blob
d70e04a988045ac71811301538f49ff859d5256d
1
// { dg-do assemble }
2
// 981203 bkoz
3
// g++/13523
4
5
template<typename T> class latin_america;
6
7
class peru
8
{
9
friend class latin_america<int>; // Particular template class friend works
10
template<class T> friend class latin_america; // This does not work.
11
};
12