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