repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git]
/
main
/
gcc
/
testsuite
/
g++.dg
/
other
/
var_copy-1.C
blob
192af758216664b50e91b2723387f31dc9f5c278
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
10
int main ()
11
{
12
va_copy (y, x);
13
}