22 lines
440 B
C++
22 lines
440 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
namespace PR8598 {
|
|
template<class T> struct identity { typedef T type; };
|
|
|
|
template<class T, class C>
|
|
void f(T C::*, typename identity<T>::type*){}
|
|
|
|
struct X { void f() {}; };
|
|
|
|
void g() { (f)(&X::f, 0); }
|
|
}
|
|
|
|
namespace PR12132 {
|
|
template<typename S> void fun(const int* const S::* member) {}
|
|
struct A { int* x; };
|
|
void foo() {
|
|
fun(&A::x);
|
|
}
|
|
}
|