PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / binary-constants-2.c
blob6c3928aa2a08a6511b308dcc43c1c8a8d3e834ab
1 /* Test for binary integer constants: -pedantic warnings. */
3 /* Origin: Joerg Wunsch <j.gnu@uriah.heep.sax.de>. */
4 /* { dg-do compile } */
5 /* { dg-options "-std=iso9899:1999 -pedantic -ftrack-macro-expansion=0" } */
7 #define FOO 0b1101
9 int
10 foo (void)
12 #if FOO /* { dg-warning "binary constants are a GCC extension" } */
13 return 23;
14 #endif
15 return 0b1101; /* { dg-warning "binary constants are a GCC extension" } */