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
/
friend41.C
blob
6d686019d9a2ab4c46669de93613a9068a8fc0c5
1
// PR c++/26912
2
3
struct Foo {
4
template<class T> int func() const;
5
};
6
7
class Bar {
8
friend int Foo::func<int>() const;
9
};
10
11