aboutsummaryrefslogtreecommitdiff
path: root/test/struct-passing.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/struct-passing.c')
-rw-r--r--test/struct-passing.c11
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) {
+}