aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/testFuncs2.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/testFuncs2.c b/test/testFuncs2.c
index f8c9bd2..f03aea3 100644
--- a/test/testFuncs2.c
+++ b/test/testFuncs2.c
@@ -31,6 +31,7 @@ typedef gaga incompletearr1;
#define ABSOLUTE3(XMACRO) (((XMACRO) <= 0) ? (XMACRO) : -(XMACRO))
#define MINUS(X, Y) ((X) - (Y))
#define PRINT(bubba) printf(#bubba "%d\n", bubba)
+#define ALLARG(Z,W) int Z##W
#define LOCO i##nt
#define LOCO2 #LOCO2
#define LOCO3(bubba) printf(#bubba "%d\n", bu##bba)
@@ -154,6 +155,9 @@ static void test33(void) {
MINUS(a, b);
// MINUS(a);
+ ALLARG(z, );
+ ABSOLUTE(z);
+
b = (int)a;
/* contrast the above START + LEN with the following */