]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.dg/pr96154a.d
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gdc.dg / pr96154a.d
CommitLineData
873b45d3
IB
1// { dg-do compile }
2
3import core.stdc.stdarg;
4
5void
6error (int a)
7{
8 va_list vp;
9 va_start (vp, a); // { dg-error "used in function with fixed arguments" }
10}
11
12void
13warn (int a, int b, ...)
14{
15 va_list vp;
16 va_start (vp, a); // { dg-warning "second parameter" }
17 va_end (vp);
18}