2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / vaarg1.C
blobbcc9df3892d3d8ff9bc0bc3810afae52b7d1fa7b
1 // { dg-do assemble  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
4 #include <stdarg.h>
5 #include <stdio.h>
7 void f (int i, ...)
9   va_list ap;
11   va_start (ap, i);
12   vprintf ("test", ap);
13   va_end (ap);