Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
5c2609a1f9c68bbbb3dc665df212988133e85439
/
.
/
test
/
SemaCXX
/
attr-sentinel.cpp
blob: 0293a5dce00c61aaf8e710a8163ce7f6e8cecd50 [
file
] [
log
] [
blame
]
// RUN: clang-cc -fsyntax-only -verify %s
void
f
(
int
,
...)
__attribute__
((
sentinel
));
void
g
()
{
f
(
1
,
2
,
__null
);
}