blob: 192af758216664b50e91b2723387f31dc9f5c278 [file] [log] [blame]
// { dg-do compile { target c++11 } }
// Test to allow for va_copy with C++0x standard.
#include <cstdarg>
va_list x;
va_list y;
int main ()
{
va_copy (y, x);
}