1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 %s -verify -fsyntax-only 2*f4a2713aSLionel Sambuc // expected-no-diagnostics 3*f4a2713aSLionel Sambuc // PR5462 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc void f1(void); 6*f4a2713aSLionel Sambuc void f2(const char * = __null, ...); 7*f4a2713aSLionel Sambuc f1(void)8*f4a2713aSLionel Sambucvoid f1(void) 9*f4a2713aSLionel Sambuc { 10*f4a2713aSLionel Sambuc f2(); 11*f4a2713aSLionel Sambuc } 12