Add support for C++0x nullptr.
[official-gcc/constexpr.git] / gcc / testsuite / g++.dg / cpp0x / nullptr05.C
blob7c3f8b7093df96290a78ddfbe48fa9388bcdea2a
1 // { dg-do compile }
2 // { dg-options "-std=c++0x" }
4 // Test assignment to method pointer
6 class F { };
8 typedef void (F::*pmf)();
10 const pmf pmf1 = nullptr;
11 const pmf pmf2 = __null;
12 const pmf pmf3 = 0;