• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 void f(int, ...) __attribute__((sentinel));
3 
g()4 void g() {
5   f(1, 2, __null);
6 }
7