diff tests/t16.c @ 58:0cd5a1d55ed6

rename joerg's tests to not conflict.
author David A. Holland
date Sun, 31 Mar 2013 01:13:03 -0400
parents tests/t13.c@ebdc6a4cb0f8
children
line wrap: on
line diff
--- a/tests/t16.c	Sun Mar 31 06:45:44 2013 +0200
+++ b/tests/t16.c	Sun Mar 31 01:13:03 2013 -0400
@@ -1,3 +1,11 @@
-#define foo /* comment continues
-               into the next line */ baz
-baz
+#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