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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
pr77812.C
blob
94f17402a4e1a61cb63e87cb39c68e04d4f4a1d2
1
// PR77812
2
// struct-stat hack failure when first overload is a template
3
4
enum f {};
5
6
template <typename>
7
void f ()
8
{
9
}
10
enum f F;
11
12
struct g {};
13
14
template <typename>
15
void g ()
16
{
17
}
18
struct g G;