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
Update ChangeLog and version files for release
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
member7.C
blob
1c75e4956625ab78409b77166436705104fee3b4
1
// PR c++/29080
2
3
struct Base {
4
template<class C> void method() { }
5
};
6
7
struct Left : public Base { };
8
struct Right : public Base { };
9
struct Join : public Left, public Right { };
10
11
void function()
12
{
13
Join join;
14
join.Left::method<int>();
15
}