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