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

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