Add support for C++0x nullptr.
[official-gcc/constexpr.git] / gcc / testsuite / g++.dg / cpp0x / nullptr07.C
blobcebed8862dfdff07ca54de13a8f3d5998c7d1515
1 // { dg-do compile }
2 // { dg-options "-std=c++0x" }
4 // Test compare to int
6 void fun()
8   int n = 0;
9   if( n == nullptr ); // { dg-error "invalid operands of types " }
10   const int m = 1;
11   if( m == nullptr ); // { dg-error "invalid operands of types " }