repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
expr
/
stdarg1.C
blob
85b6f7460e347a9ff96719303d54de2c2565ea80
1
// PR c++/23840
2
3
#include <stdarg.h>
4
struct S
5
{
6
int f(int);
7
};
8
void f(int i, ...)
9
{
10
va_list ap;
11
va_start (ap, i);
12
va_arg (ap, S).f(0);
13
}