diff options
Diffstat (limited to 'tests/struct-passing.c')
-rw-r--r-- | tests/struct-passing.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/struct-passing.c b/tests/struct-passing.c deleted file mode 100644 index 54c65a2..0000000 --- a/tests/struct-passing.c +++ /dev/null @@ -1,11 +0,0 @@ -struct s { - int x; - struct { - char y[3]; - short z; - } s[2]; - double w; -}; - -void f(struct s s) { -} |