gcc/gcc/testsuite/gcc.dg/format/pr78304.c

11 lines
250 B
C

/* { dg-do compile { target inttypes_types } } */
/* { dg-options "-O2 -Wall -Wextra" } */
#include <inttypes.h>
#include <stdio.h>
void test (size_t size)
{
printf ("size: %" PRIu32 "\n", size); /* { dg-warning "expects argument of type" } */
}