Fix file cache tunables documentation
[official-gcc.git] / gcc / testsuite / gcc.dg / system-binary-constants-1.c
blob0ed6146b182b9769ab6aa901c244b03f6ea51c48
1 /*
2 Origin: Dodji Seketeli <dodji@redhat.com>
3 { dg-options "-std=iso9899:1999 -pedantic" }
4 { dg-do compile }
5 */
7 #include "system-binary-constants-1.h"
9 int
10 foo (void)
12 #if BINARY_INT_CONSTANT_IN_SYSTEM_HEADER /* A binary constant defined
13 in system header. No
14 warning. */
15 return 23;
16 #endif
17 return 0b1101; /* { dg-warning "binary constants are a C23 feature or GCC extension" } */