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
Update ChangeLog and version files for release
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
friend45.C
blob
61c365617491e331b88b514365f5f75fd435c820
1
// PR c++/28025
2
3
class BaseSubmit
4
{
5
template<class T> friend class PeriodicSubmit;
6
};
7
8
template<class ID>
9
class ValuesSubmit
10
{
11
template<class T> friend class PeriodicSubmit;
12
};
13
14
class A;
15
class MultiSubmit : public ValuesSubmit<A>
16
{
17
};