Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f660f4b1bedd6b614acf52108894b805b807c50d
/
.
/
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
);
}