Add support for C++0x nullptr.
[official-gcc/constexpr.git] / gcc / testsuite / g++.dg / cpp0x / nullptr10.C
blobcd131864a336cced13d3bb87995e0a715c3792d8
1 // { dg-do compile }
2 // { dg-options "-std=c++0x" }
4 // Test arithmetic operations
6 void fun()
8   nullptr = 0;         // { dg-error "lvalue required as left operand" }
9   nullptr + 2;         // { dg-error "invalid operands of types " }