Daniel Dunbar | 8fbe78f | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
Anders Carlsson | 0b11a3e | 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 | } |