blob: 2eac73b6132d3d6d0322f84f17c25c8bf15bb6c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* Regression test: #ifdef 0 should not crash. Problem noted by
Jakub Jelinek <jakub@redhat.com>. */
/* { dg-do preprocess } */
#ifdef 0 /* { dg-error "with invalid argument" } */
#error not seen
#endif
#ifndef 0 /* { dg-error "with invalid argument" } */
#else
#error not seen
#endif
|