Sign in
llvm
/
clang
/
1571f048734190c5ed03d1a6083e579ec7b5801f
/
.
/
test
/
SemaCXX
/
attr-sentinel.cpp
blob: 56c8f881600b90b2160bf55d329447d9a6aed7f8 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s
void
f
(
int
,
...)
__attribute__
((
sentinel
));
void
g
()
{
f
(
1
,
2
,
__null
);
}