1// RUN: %clang_cc1 -std=c++98 -fsyntax-only -verify %s2// expected-no-diagnostics3void f(void *);4void g() { f(__nullptr); }5