aboutsummaryrefslogtreecommitdiff
path: root/test/struct-passing-call.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/struct-passing-call.c')
-rw-r--r--test/struct-passing-call.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/struct-passing-call.c b/test/struct-passing-call.c
new file mode 100644
index 0000000..2ad746e
--- /dev/null
+++ b/test/struct-passing-call.c
@@ -0,0 +1,8 @@
+struct s {
+ int x;
+} s;
+
+void f(struct s);
+void g(void) {
+ f(s);
+}