diff options
Diffstat (limited to 'glcpp/tests/056-macro-argument-with-comma.c')
-rw-r--r-- | glcpp/tests/056-macro-argument-with-comma.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/glcpp/tests/056-macro-argument-with-comma.c b/glcpp/tests/056-macro-argument-with-comma.c new file mode 100644 index 0000000000..58701d1f25 --- /dev/null +++ b/glcpp/tests/056-macro-argument-with-comma.c @@ -0,0 +1,4 @@ +#define bar with,embedded,commas +#define function(x) success +#define foo function +foo(bar) |