(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
ptrmem6.C
struct S {};

void g(int S::**);

template <typename T>
void f (int T::* volatile *p) {
  g(p); // { dg-error "conversion" }
}

template void f(int S::* volatile *); // { dg-message "required" }