diff options
Diffstat (limited to 'Tests/CompileFeatures/main.c')
-rw-r--r-- | Tests/CompileFeatures/main.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/CompileFeatures/main.c b/Tests/CompileFeatures/main.c new file mode 100644 index 0000000..831c5eb2 --- /dev/null +++ b/Tests/CompileFeatures/main.c @@ -0,0 +1,12 @@ + +int foo(int * restrict a, int * restrict b) +{ + (void)a; + (void)b; + return 0; +} + +int main() +{ + return 0; +} |