blob: d852d4e2f212e9bba89a1d966c8e1915932aceaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* Copyright (C) 2003 Free Software Foundation, Inc. */
/* Source: Neil Booth, 18 Apr 2003. */
/* { dg-do preprocess } */
/* { dg-options "-ansi -pedantic -Wundef" } */
/* Check that for C++ we handle true and false correctly, and do not
treat them as undefined identifiers. */
#if true /* { dg-bogus "is not defined" } */
#error foo /* { dg-error "foo" } */
#endif
#if false /* { dg-bogus "is not defined" } */
#error foo /* { dg-bogus "foo" } */
#endif
|