Add support for C++0x nullptr.
[official-gcc/constexpr.git] / gcc / testsuite / g++.dg / cpp0x / nullptr09.C
bloba42821cbfa6b00dddad1891732362ff446ac1c32
1 // { dg-do compile }
2 // { dg-options "-std=c++0x" }
4 // Test compare to literal 0
6 void fun()
8   if( nullptr == 0 );