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