Sign in
llvm
/
clang
/
36a094aaa20f6951a530e9bf0250d9afcf8a341b
/
.
/
test
/
SemaCXX
/
nullptr-98.cpp
blob: 306b2033e45688160ab7b8aee26d43a244df03e9 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -std=c++98 -fsyntax-only -verify %s
// expected-no-diagnostics
void
f
(
void
*);
void
g
()
{
f
(
__nullptr
);
}