aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/system-binary-constants-1.C
blob: fbf8bb2c96d037fe898ce7c377dc74fff9d47ede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* 
   Origin: Dodji Seketeli <dodji@redhat.com>
   { dg-options "-std=c++98 -pedantic" }
   { dg-do compile } 
 */

#include "system-binary-constants-1.h"

int
foo (void)
{
#if BINARY_INT_CONSTANT_IN_SYSTEM_HEADER /* A binary constant defined
					    in system header.  No
					    warning.  */
  return 23;
#endif
  return 0b1101; /* { dg-warning "binary constants are a C..1y feature or GCC extension" } */
}