blob: 9fa2ea19d4119869ca2ef54e0d92dbd9a65f719d [file] [log] [blame]
Douglas Gregor83f51722011-01-26 03:43:54 +00001// 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;