source-engine/thirdparty/cryptopp/TestPrograms/test_cxx11_nullptr.cxx

7 lines
98 B
C++
Raw Normal View History

2020-10-22 17:43:01 +00:00
#include <cstddef>
int main(int argc, char* argv[])
{
int* p = nullptr;
return 0;
}