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 concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
memfriend8.C
blob
886096b9d54a1c7d0e9375715a761cafb4fca89f
1
// { dg-do compile }
2
3
// Origin: Martin Sebor <sebor@roguewave.com>
4
5
// PR c++/5369: Member function of class template as friend
6
7
template <class T>
8
struct S
9
{
10
int foo () {
11
return S<int>::bar ();
12
}
13
14
private:
15
16
template <class U>
17
friend int S<U>::foo ();
18
19
static int bar () { return 0; }
20
};
21
22
int main ()
23
{
24
S<char>().foo ();
25
}