CMake/Tests/CompileFeatures/cxx_nullptr.cpp

10 lines
68 B
C++

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