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
cp/
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
friend20.C
blob
ecdc763ca06e84543e2d95b1ddeba9ebac81c1f4
1
// PR c++/80830
2
3
template <int> class a;
4
class b
5
{
6
friend int operator>> (int, b);
7
};
8
template <int c> int &operator>> (int &, a<c> &);
9
template <int = 3> class a
10
{
11
friend int &operator>><> (int &, a &);
12
a<>
13
d ()
14
{
15
}
16
};