2018-05-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / cast-4.c
blobebc84c11ce1c9b4f7a3b042ae88e0927ae4c4fad
1 /* Test warnings when casting from a constant integer to pointer.
2 Test with -pedantic-errors. */
3 /* Origin: Carlos O'Donell <carlos@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=gnu99 -pedantic-errors" } */
7 extern int i;
8 char c;
9 void
10 f (void)
12 c = (char)&i; /* { dg-warning "cast from pointer to integer of different size" } */