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
Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
template13.C
blob
b1c03690be53ffa446795024ec5fde13f8ffe2f0
1
// PR c++/14002
2
3
template <typename T> void foo (T x) { x; }
4
5
void bar() { foo(0); }
6
7
struct A
8
{
9
friend void foo<int> (int);
10
};