diff options
Diffstat (limited to 'test cases/common/21 target arg/func2.c')
-rw-r--r-- | test cases/common/21 target arg/func2.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test cases/common/21 target arg/func2.c b/test cases/common/21 target arg/func2.c new file mode 100644 index 0000000..1897cf7 --- /dev/null +++ b/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; } |