rt_gccstream/gcc/testsuite/gcc.dg/Wpointer-to-int-cast-2.c

13 lines
275 B
C

/* Test -Wpointer-to-int-cast. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "-Wpointer-to-int-cast" } */
void *p;
char
f (void)
{
return (char) p; /* { dg-warning "cast from pointer to integer of different size" } */
}