summaryrefslogtreecommitdiff
path: root/tests/params.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/params.c')
-rw-r--r--tests/params.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/params.c b/tests/params.c
new file mode 100644
index 0000000..eb91b83
--- /dev/null
+++ b/tests/params.c
@@ -0,0 +1,9 @@
+int square(int x) {
+ return x * x;
+}
+int main() {
+ int x;
+ x = square(9);// 81
+ e:goto e;
+ return x;
+}