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