hanchenye-llvm-project/clang/test/SemaCXX/attr-sentinel.cpp

7 lines
121 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
void f(int, ...) __attribute__((sentinel));
void g() {
f(1, 2, __null);
}