blob: 7b8a9928098e75b3b7d54ce3b17085c2c54d9d98 [file] [log] [blame]
/* Test for printf formats: rejection of C2X (and C2X-recommended) formats in
pedantic mode. */
/* { dg-do compile } */
/* { dg-options "-std=c11 -pedantic -Wformat" } */
#include "format.h"
void
foo (int i)
{
printf ("%b", i); /* { dg-warning "C" } */
printf ("%B", i); /* { dg-warning "C" } */
}