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