OSDN Git Service

Some raw string changes from N3077
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / var_copy-1.C
1 // { dg-options "-std=c++0x" }
2 // { dg-do compile }
3
4 // Test to allow for va_copy with C++0x standard.
5
6 #include <cstdarg>
7
8 va_list x;
9 va_list y;
10
11 int main ()
12 {
13     va_copy (y, x);
14 }