Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
e4d2bdd54c29656f2eba004d6db1e4942f2bfcd9
/
.
/
test
/
SemaCXX
/
attr-sentinel.cpp
blob: 0293a5dce00c61aaf8e710a8163ce7f6e8cecd50 [
file
] [
log
] [
blame
]
Anders Carlsson
e4d2bdd
2009-11-24 17:24:21 +0000
[
diff
] [
blame^
]
1
// RUN: clang-cc -fsyntax-only -verify %s
2
void
f
(
int
,
...)
__attribute__
((
sentinel
));
3
4
void
g
()
{
5
f
(
1
,
2
,
__null
);
6
}