Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
temp-va-arg-bug.C
blob: 616f2f4b0f0a3408516d2f29c706bb29b96088f6 [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
// { dg-options "-Wno-abi" { target arm_eabi } }
#include
<stdarg.h>
struct
S
{
};
void
f
(
S
const
&);
void
g
(
va_list args
)
{
f
(
va_arg
(
args
,
S
));
}