blob: 6b48a5d005baed12f9867c6fe178f6d9b8d8931c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* Test that binary constants are diagnosed in C11 mode: -pedantic-errors. */
/* { dg-do compile } */
/* { dg-options "-std=c11 -pedantic-errors" } */
int a = 0b1; /* { dg-error "binary constants" } */
#if 0b101 /* { dg-error "binary constants" } */
#endif
int b = 0B1; /* { dg-error "binary constants" } */
#if 0B101 /* { dg-error "binary constants" } */
#endif
|