// RUN: %clang_cc1 -fsyntax-only -verify %s namespace PR5557 { template struct A { A(); virtual void anchor(); // expected-note{{instantiation}} 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(); } 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{{instantiation}} template struct HasOutOfLineKey { HasOutOfLineKey() { } // expected-note{{in instantiation of member function 'HasOutOfLineKey::f' requested here}} 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;