Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
Anders Carlsson | e4d2bdd | 2009-11-24 17:24:21 +0000 | [diff] [blame] | 2 | void f(int, ...) __attribute__((sentinel)); |
3 | |||||
4 | void g() { | ||||
5 | f(1, 2, __null); | ||||
6 | } |