p4-0x.cpp revision 83f51722ed2b8134810cb178f39e44da811de7cd
1// RUN: %clang_cc1 -std=c++0x -fsyntax-only -verify %s
2
3struct X {
4  void f() &;
5  void g() &&;
6};
7
8void (X::*pmf)() & = &X::f;
9