aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cpp-if1.c
blob: be0f61828362b0711b8208e934b6297848279718 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* { dg-do preprocess } */ 
/* { dg-options "-pedantic-errors" } */

#if 0xa != 10
#error 0xa != 10 /* { dg-bogus "#error" "normal conversion" } */
#endif

#if 077 != 63
#error 077 != 63 /* { dg-bogus "#error" "normal conversion" } */
#endif

#if 12wrt /* { dg-error "nvalid number" "invalid number" } */
#endif

#if 0abc /* { dg-error "nvalid number" "invalid number" } */
#endif

#if 42abc /* { dg-error "nvalid number" "invalid number" } */
#endif

#if 1.2 /* { dg-error "floating point numbers" "floating point in #if" } */
#endif

#if 4uu /* { dg-error "too many `u' suffixes" "too many suffixes" } */
#endif

#if 124123231lll /* { dg-error "too many `l' suffixes" "too many suffixes" } */
#endif

#if 099 /* { dg-error "digits beyond the radix" "decimal in octal constant" } */
#endif

#if 0xfffffffffffffffff /* { dg-error "integer constant out of range" "range error" } */
#endif