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
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
friend51.C
blob
d2d1ad799d88e45a9b1421456a8b83e585e9c02f
1
// PR c++/38392
2
// { dg-do link }
3
4
void Function();
5
6
int main()
7
{
8
Function();
9
}
10
11
template <typename T>
12
struct Test
13
{
14
friend void Function() { }
15
};
16
17
template class Test<int>;