]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.dg/pr96140.d
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gdc.dg / pr96140.d
1 // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96140
2 // { dg-do compile }
3 module pr94140;
4
5 import core.stdc.stdarg;
6
7 void test_va_arg(ref int a, ...)
8 {
9 return va_arg!int(_argptr, a);
10 }
11
12 void test_va_start(ref va_list a, ...)
13 {
14 return va_start(a, a);
15 }