rt_gccstream/gcc/testsuite/g++.dg/other/var_copy-1.C

15 lines
183 B
C

// { dg-options "-std=c++0x" }
// { dg-do compile }
// Test to allow for va_copy with C++0x standard.
#include <cstdarg>
va_list x;
va_list y;
int main ()
{
va_copy (y, x);
}