YouCompleteMe/cpp/llvm/tools/clang/test/SemaCXX/vararg-default-arg.cpp

11 lines
140 B
C++
Raw Normal View History

// RUN: %clang_cc1 %s -verify -fsyntax-only
// PR5462
void f1(void);
void f2(const char * = __null, ...);
void f1(void)
{
f2();
}