libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / c11-binary-constants-2.c
blob6b48a5d005baed12f9867c6fe178f6d9b8d8931c
1 /* Test that binary constants are diagnosed in C11 mode: -pedantic-errors. */
2 /* { dg-do compile } */
3 /* { dg-options "-std=c11 -pedantic-errors" } */
5 int a = 0b1; /* { dg-error "binary constants" } */
6 #if 0b101 /* { dg-error "binary constants" } */
7 #endif
9 int b = 0B1; /* { dg-error "binary constants" } */
10 #if 0B101 /* { dg-error "binary constants" } */
11 #endif