PR tree-optimization/86401
[official-gcc.git] / gcc / testsuite / c-c++-common / pr68833-2.c
blobc991b7a13c204eaf8e3489d7611fde8a5c185b19
1 /* PR c/68833 */
2 /* { dg-do compile } */
3 /* { dg-options "-Werror=missing-format-attribute" } */
5 #include <stdarg.h>
7 void
8 foo (const char *fmt, ...)
10 va_list ap;
11 va_start (ap, fmt);
12 __builtin_vprintf (fmt, ap); /* { dg-error "candidate" "printf attribute warning" } */
13 va_end (ap);
16 /* { dg-prune-output "treated as errors" } */