llvm-project/clang/test/SemaTemplate/member-access-ambig.cpp
Douglas Gregor bde20c0342 When we perform name lookup for a template, we may end up finding an
ambiguous name where none of the declarations found are actually
templates. In this case, make sure we clear out the ambiguous-path
data when recomputing the lookup result kind. Fixes PR8439.

llvm-svn: 117112
2010-10-22 17:36:51 +00:00

36 lines
477 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
// PR8439
class A
{
};
class B
{
public:
A & m;
};
class Base
{
public:
B &f();
};
class Derived1 : public Base { };
class Derived2 : public Base { };
class X : public B, public Derived2, public Derived1
{
public:
virtual void g();
};
void X::g()
{
m.f<int>(); // expected-error{{no member named 'f' in 'A'}} \
// expected-error{{expected '(' for function-style cast}} \
// expected-error{{expected expression}}
}