summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/attr-sentinel.cpp
blob: 0293a5dce00c61aaf8e710a8163ce7f6e8cecd50 (plain)
1
2
3
4
5
6
// RUN: clang-cc -fsyntax-only -verify %s
void f(int, ...) __attribute__((sentinel));

void g() {
  f(1, 2, __null);
}