Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / gcc.dg / cpp / paste3.c
blob0c9c52de3d2eb1b9feda7c9e81db4245dd49c968
1 /* Copyright (C) 2000 Free Software Foundation, Inc. */
3 /* { dg-do compile } */
5 #define plus +
7 void foo()
9 int a, b = 1;
11 /* The correct "a = 1 + ++b" will compile.
12 The incorrect "a = 1 +++b" won't. */
13 a = 1 plus++b;