blob: 8c0ca658c55e042b2f54db7190efe8286d204ede [file] [log] [blame]
// { dg-do compile }
import core.stdc.stdarg;
void
error (int a)
{
va_list vp;
va_start (vp, a); // { dg-error "used in function with fixed arguments" }
}
void
warn (int a, int b, ...)
{
va_list vp;
va_start (vp, a); // { dg-warning "second parameter" }
va_end (vp);
}