1// RUN: %clang_cc1 %s -verify -fsyntax-only2// expected-no-diagnostics3// PR54624 5void f1(void);6void f2(const char * = __null, ...);7 8void f1(void)9{10 f2();11}12