// PR c++/29080

struct Base {
  template<class C> void method() { }
};

struct Left : public Base { };
struct Right : public Base { };
struct Join : public Left, public Right { };

void function()
{
  Join join;
  join.Left::method<int>();
}


syntax highlighted by Code2HTML, v. 0.9.1