comparison gcc/testsuite/gcc.dg/cpp/paste3.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* Copyright (C) 2000 Free Software Foundation, Inc. */
2
3 /* { dg-do compile } */
4
5 #define plus +
6
7 void foo()
8 {
9 int a, b = 1;
10
11 /* The correct "a = 1 + ++b" will compile.
12 The incorrect "a = 1 +++b" won't. */
13 a = 1 plus++b;
14 }