blob: 5059ae667604c840b4c9e2bf51330e202933822f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Tests for un-terminated conditionals: 1. */
#if 1 /* { dg-error "unterminated" "unterminated #if" } */
#ifdef notdef /* { dg-bogus "unterminated" "nested terminated #ifdef" } */
blah blah blah
#endif
more text
/* oops! */
|