blob: 3c8e41cb3e3596e1b4939030b64ad5138ecb0d69 [file] [log] [blame]
// RUN: %clang_cc1 %s -verify -fsyntax-only
// PR5462
void f1(void);
void f2(const char * = __null, ...);
void f1(void)
{
f2();
}