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