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