// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s // RUN: %clang_cc1 -std=c++98 -fsyntax-only -verify %s namespace test0 { namespace N { } template struct A { void f(); }; template struct B : A { using A::f; void g() { using namespace N; f(); } }; template struct B; } namespace test1 { template struct Visitor1 { void Visit(struct Object1*); }; template struct Visitor2 { void Visit(struct Object2*); // expected-note {{candidate function}} }; template struct JoinVisitor : Visitor1, Visitor2 { typedef Visitor1 Base1; typedef Visitor2 Base2; void Visit(struct Object1*); // expected-note {{candidate function}} using Base2::Visit; }; class Knot : public JoinVisitor { }; void test() { Knot().Visit((struct Object1*) 0); Knot().Visit((struct Object2*) 0); Knot().Visit((struct Object3*) 0); // expected-error {{no matching member function for call}} } } // PR5847 namespace test2 { namespace ns { void foo(); } template void bar(T* ptr) { using ns::foo; foo(); } template void bar(char *); } namespace test3 { template struct t { struct s1 { T f1() const; }; struct s2 : s1 { using s1::f1; T f1() const; }; }; void f2() { t::s2 a; t::s2 const & b = a; b.f1(); } } namespace PR16936 { // Make sure both using decls are properly considered for // overload resolution. template struct A { void access(int); }; template struct B { void access(); }; template struct X : public A, public B { using A::access; using B::access; void f() { access(0); } }; void f() { X x; x.f(); } } namespace pr21923 { template struct Base { int field; void method(); }; template struct Derived : Base { using Base::field; using Base::method; static void m_fn1() { // expected-error@+1 {{invalid use of member 'field' in static member function}} (void)field; // expected-error@+1 {{invalid use of member 'field' in static member function}} (void)&field; // expected-error@+1 {{call to non-static member function without an object argument}} (void)method; // expected-error@+1 {{call to non-static member function without an object argument}} (void)&method; // expected-error@+1 {{call to non-static member function without an object argument}} method(); (void)&Base::field; (void)&Base::method; } #if __cplusplus >= 201103L // These usages are OK in C++11 due to the unevaluated context. enum { TheSize = sizeof(field) }; typedef decltype(field) U; #else // expected-error@+1 {{invalid use of non-static data member 'field'}} enum { TheSize = sizeof(field) }; #endif }; #if __cplusplus < 201103L // C++98 has an extra note for TheSize. // expected-note@+2 {{requested here}} #endif template class Derived; // expected-note {{requested here}} // This is interesting because we form an UnresolvedLookupExpr in the static // function template and an UnresolvedMemberExpr in the instance function // template. As a result, we get slightly different behavior. struct UnresolvedTemplateNames { template void maybe_static(); #if __cplusplus < 201103L // expected-warning@+2 {{default template arguments for a function template are a C++11 extension}} #endif template static void maybe_static(); template void instance_method() { (void)maybe_static(); } template static void static_method() { // expected-error@+1 {{call to non-static member function without an object argument}} (void)maybe_static(); } }; void force_instantiation(UnresolvedTemplateNames x) { x.instance_method(); UnresolvedTemplateNames::static_method(); // expected-note {{requested here}} } } // pr21923