blob: 3c8e41cb3e3596e1b4939030b64ad5138ecb0d69 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -verify -fsyntax-only
Eli Friedman3e42ffd2009-11-14 04:43:10 +00002// PR5462
3
4void f1(void);
5void f2(const char * = __null, ...);
6
7void f1(void)
8{
9 f2();
10}