Compiler Error C2389

 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

The latest version of this topic can be found at Compiler Error C2389.

operator' : illegal operand 'nullptr'

nullptr cannot be an operand.

The following sample generates C2389:

// C2389.cpp  
// compile with: /clr  
int main() {  
   throw nullptr;   // C2389  
}  

Show: