2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / printf1.C
blob65fda3fbde703333014e35565593de86658ed39b
1 // { dg-do assemble  }
2 // { dg-options "-Wall" }
4 struct a
6   void x(char *f,...) __attribute__((format(printf,2,3)));
7 };
9 int main()
11   a A;
12   A.x("%d"); // { dg-warning "" } too few arguments for format
13   return 0;