diff options
Diffstat (limited to 'Tests/GeneratorExpression/echo.c')
-rw-r--r-- | Tests/GeneratorExpression/echo.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Tests/GeneratorExpression/echo.c b/Tests/GeneratorExpression/echo.c index 06b0844..41596a2 100644 --- a/Tests/GeneratorExpression/echo.c +++ b/Tests/GeneratorExpression/echo.c @@ -3,6 +3,9 @@ int main(int argc, char* argv[]) { +#ifndef SRC_GENEX_WORKS +#error SRC_GENEX_WORKS not defined +#endif printf("%s\n", argv[1]); return EXIT_SUCCESS; } |