cm_cxx_nullptr.cxx 103 B

1234567891011121314
  1. int test(int)
  2. {
  3. return -1;
  4. }
  5. int test(int*)
  6. {
  7. return 0;
  8. }
  9. int main()
  10. {
  11. return test(nullptr);
  12. }