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

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

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