Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
other
/
var_copy-1.C
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
);
}