// RUN: %clang_cc1 -fsyntax-only -verify %s namespace PR8598 { template struct identity { typedef T type; }; template void f(T C::*, typename identity::type*){} struct X { void f() {}; }; void g() { (f)(&X::f, 0); } } namespace PR12132 { template void fun(const int* const S::* member) {} struct A { int* x; }; void foo() { fun(&A::x); } }