OSDN Git Service

PR c++/44157
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / nullptr05.C
1 // { dg-do compile }
2 // { dg-options "-std=c++0x" }
3
4 // Test assignment to method pointer
5
6 class F { };
7
8 typedef void (F::*pmf)();
9
10 const pmf pmf1 = nullptr;
11 const pmf pmf2 = __null;
12 const pmf pmf3 = 0;