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