repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wunused-function3.C
blob
94c9025a43eadd0ff35fb8a5709018c78b172d97
1
// { dg-options -Wunused-function }
2
3
namespace
4
{
5
template <class T> struct A
6
{
7
friend void f(A) { }
8
};
9
10
A<int> a;
11
}