diff tests/t13.c @ 52:ebdc6a4cb0f8

Test case for handling of missing arguments.
author Joerg Sonnenberger <joerg@bec.de>
date Sun, 31 Mar 2013 06:07:44 +0200
parents
children 737ffe27b4bd
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/t13.c	Sun Mar 31 06:07:44 2013 +0200
@@ -0,0 +1,11 @@
+#define a() x
+a()
+a ()
+#define b(p) p
+x/**/b(1)/**/x
+x/**/b (1)/**/x
+x/**/b()/**/x
+#define c(p,q) p/**/q
+x/**/c(1,2)/**/x
+x/**/c(1)/**/x
+x/**/c()/**/x