blob: 510c2e4e6c9c37cf25817f3717e50c839c6e6829 [file] [log] [blame]
/* PR c/80919 */
/* { dg-do compile } */
/* { dg-options "-Wall" } */
void
fn (void)
{
int a[0];
__builtin_printf("%d\n", &a); /* { dg-warning "expects argument of type" } */
__builtin_printf("%i\n", &a); /* { dg-warning "expects argument of type" } */
__builtin_printf("%o\n", &a); /* { dg-warning "expects argument of type" } */
__builtin_printf("%u\n", &a); /* { dg-warning "expects argument of type" } */
__builtin_printf("%x\n", &a); /* { dg-warning "expects argument of type" } */
__builtin_printf("%X\n", &a); /* { dg-warning "expects argument of type" } */
}