diff options
Diffstat (limited to 'meson/test cases/common/21 target arg/func.c')
-rw-r--r-- | meson/test cases/common/21 target arg/func.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meson/test cases/common/21 target arg/func.c b/meson/test cases/common/21 target arg/func.c new file mode 100644 index 000000000..8c0659e96 --- /dev/null +++ b/meson/test cases/common/21 target arg/func.c @@ -0,0 +1,9 @@ +#ifndef CTHING +#error "Local argument not set" +#endif + +#ifdef CPPTHING +#error "Wrong local argument set" +#endif + +int func(void) { return 0; } |