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