author | Martin Krošlák <kroslakma@gmail.com> |
Thu, 23 Jul 2020 18:16:22 -0400 | |
changeset 1299 | 02d36217591b |
parent 749 | 4e0837f91f12 |
permissions | -rw-r--r-- |
749
4e0837f91f12
Added unit test for too many macro args.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1 |
// This should produce an error, not anything like "WRONG 7 )" |
4e0837f91f12
Added unit test for too many macro args.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
2 |
#define x(a) a |
4e0837f91f12
Added unit test for too many macro args.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
3 |
x(WRONG, 7) |