aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/binary-constants-3.c
blob: 410fc4cd7256f7c0dbce0dabc2b39150b899a4e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Test for binary integer constants: -pedantic-errors.  */

/* Origin: Joerg Wunsch <j.gnu@uriah.heep.sax.de>.  */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:1999 -pedantic-errors -ftrack-macro-expansion=0" } */

#define FOO 0b1101

int
foo (void)
{
#if FOO /* { dg-error "binary constants are a GCC extension" } */
  return 23;
#endif
  return 0b1101; /* { dg-error "binary constants are a GCC extension" } */
}