// RUN: %clang_cc1 -fsyntax-only -verify %s namespace PR5557 { template struct A { A(); virtual void anchor(); virtual int a(T x); }; template A::A() {} template void A::anchor() { } template int A::a(T x) { return *x; // expected-error{{requires pointer operand}} } void f(A x) { x.anchor(); // expected-note{{instantiation}} } template struct X { virtual void f(); }; template<> void X::f() { } } template struct Base { virtual ~Base() { int *ptr = 0; T t = ptr; // expected-error{{cannot initialize}} } }; template struct Derived : Base { virtual void foo() { } }; template struct Derived; // expected-note {{in instantiation of member function 'Base::~Base' requested here}} template struct HasOutOfLineKey { HasOutOfLineKey() { } virtual T *f(float *fp); }; template T *HasOutOfLineKey::f(float *fp) { return fp; // expected-error{{cannot initialize return object of type 'int *' with an lvalue of type 'float *'}} } HasOutOfLineKey out_of_line; // expected-note{{in instantiation of member function 'HasOutOfLineKey::f' requested here}} namespace std { class type_info; } namespace PR7114 { class A { virtual ~A(); }; // expected-note{{declared private here}} template class B { public: class Inner : public A { }; // expected-error{{base class 'PR7114::A' has private destructor}} static Inner i; static const unsigned value = sizeof(i) == 4; }; int f() { return B::value; } void test_typeid(B::Inner bfi) { (void)typeid(bfi); // expected-note{{implicit default destructor}} } template struct X : A { void f() { } }; void test_X(X xi, X xf) { xi.f(); } }