1 // { dg-do compile { target c++11 } } 2 3 // Test to allow for va_copy with C++0x standard. 4 5 #include <cstdarg> 6 7 va_list x; 8 va_list y; 9 main()10 int main () 11 { 12 va_copy (y, x); 13 } 14