comparison 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
comparison
equal deleted inserted replaced
51:bec1eb5ac326 52:ebdc6a4cb0f8
1 #define a() x
2 a()
3 a ()
4 #define b(p) p
5 x/**/b(1)/**/x
6 x/**/b (1)/**/x
7 x/**/b()/**/x
8 #define c(p,q) p/**/q
9 x/**/c(1,2)/**/x
10 x/**/c(1)/**/x
11 x/**/c()/**/x