glcpp/tests: Add tests for multiline #elif

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

View File

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

View File

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