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
/
using20.C
blob
1df9549cd6c8468027af6e4728818b70e97ff4ac
1
// PR c++/51925
2
3
struct E
4
{
5
int e ();
6
};
7
template <typename T1>
8
struct G : public E
9
{
10
using E::e;
11
template <int> void e ();
12
void f () { e <0> (); }
13
};
14
int f(void)
15
{
16
G<int> a;
17
a.f();
18
}