blob: 4c45d146b40cb734bc708fff2c5a6bb373a36f5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Copyright (C) 2002 Free Software Foundation, Inc. */
/* Source: Neil Booth, 26 Feb 2002.
Test that we allow directives in macro arguments. */
/* { dg-do preprocess } */
#define f(x) x
f (
#if 1 /* { dg-error "not portable" } */
1)
#endif
|