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