glcpp/tests: Add test for multiline #if

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Matt Turner
2012-11-06 16:24:10 -08:00
parent b44423cf75
commit 28e397660c
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#define X(x) x
#if X( \
1 \
)
int foo();
#endif

View File

@@ -0,0 +1,7 @@
int foo();