freebsd-skq/test/SemaCXX/attr-sentinel.cpp
2010-01-01 10:34:51 +00:00

7 lines
121 B
C++

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