C++程序  |  7行  |  121 B

// RUN: %clang_cc1 -fsyntax-only -verify %s
void f(int, ...) __attribute__((sentinel));

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