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);
}