aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/c2x-binary-constants-2.c
blob: 4379427d6cec6132eaab3a1836d87f9f8cc82a05 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Test that binary constants are accepted in C2X mode: compat warnings.  */
/* { dg-do compile } */
/* { dg-options "-std=c2x -Wc11-c2x-compat" } */

int a = 0b1; /* { dg-warning "C2X feature" } */
#if 0b101 /* { dg-warning "C2X feature" } */
#endif

int b = 0B1; /* { dg-warning "C2X feature" } */
#if 0B101 /* { dg-warning "C2X feature" } */
#endif