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
PR c++/85262 - ICE with redundant qualification on constructor.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
friend1.C
blob
f19dc9c628b9aeff5e195cea2ce811d218572892
1
namespace N {
2
template <typename T>
3
static void f ();
4
5
struct S {
6
friend void N::f<int> ();
7
static void f (int);
8
};
9
}