summaryrefslogtreecommitdiff
path: root/Source/Checks/cm_cxx_nullptr.cxx
blob: 500684aee9e33300af9eaf485be530e668dd3e6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
int test(int)
{
  return -1;
}

int test(int*)
{
  return 0;
}

int main()
{
  return test(nullptr);
}