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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
friend40.C
blob
646087630017feede397fa3b4d591dea1a3b2970
1
// { dg-do assemble }
2
// { dg-options "-Wno-non-template-friend" }
3
// Origin: Jason Merrill <jason@cygnus.com>
4
5
template<class T> struct A
6
{
7
friend void f ();
8
};
9
10
A<short> a;
11
A<int> b;
12