1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-07-03 02:26:24 +08:00
CMake/Tests/CompileFeatures/cxx_nullptr.cpp
2014-04-08 11:05:55 +02:00

11 lines
69 B
C++

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