aboutsummaryrefslogtreecommitdiffstats
path: root/cxx11/c++11-test-nullptr-N2431.cpp
blob: 6c5ae6623adb2aa05840e8a3d021daba7b3d8d71 (plain)
1
2
3
4
5
int main()
{
	int* test = nullptr;
	return test ? 1 : 0;
}