author | Ethan Lee <flibitijibibo@flibitijibibo.com> |
Wed, 26 Aug 2020 14:37:18 -0400 | |
changeset 1301 | 79bbc92200dc |
parent 745 | a8013b76a727 |
permissions | -rw-r--r-- |
745
a8013b76a727
More preprocessor unit tests.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1 |
/* This should produce "RIGHT RIGHT" instead of "WRONG WRONG" (etc) */ |
a8013b76a727
More preprocessor unit tests.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
2 |
#define x(WRONG,ANDWRONG) WRONG ANDWRONG |
a8013b76a727
More preprocessor unit tests.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
3 |
x(RIGHT,) |
a8013b76a727
More preprocessor unit tests.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
4 |
x(,RIGHT) |
a8013b76a727
More preprocessor unit tests.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
5 |
x(,) |