Sign in
gnu
/
gcc
/
a8404c07e7fca388c02c39077865f7d5fa928430
/
.
/
gcc
/
testsuite
/
g++.dg
/
pr77427.C
blob: 544946d70b6f40280345c151d91e60fcfa417ac5 [
file
] [
log
] [
blame
]
// { dg-do compile }
void
bar
(
__builtin_va_list
&);
struct
c
{
operator
const
__builtin_va_list
&();
operator
__builtin_va_list
&();
};
void
foo
(
void
)
{
struct
c c1
;
bar
(
c1
);
}