CMake/Tests/CompileFeatures/cxx_nullptr.cpp

11 lines
69 B
C++

void someFunc(int*)
{
}
void otherFunc()
{
someFunc(nullptr);
}