repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
cpp
/
paste3.c
blob
0c9c52de3d2eb1b9feda7c9e81db4245dd49c968
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
}