aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/04.c
diff options
context:
space:
mode:
Diffstat (limited to 'c_compiler/test/in/04.c')
-rw-r--r--c_compiler/test/in/04.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/c_compiler/test/in/04.c b/c_compiler/test/in/04.c
new file mode 100644
index 0000000..57cf697
--- /dev/null
+++ b/c_compiler/test/in/04.c
@@ -0,0 +1,9 @@
+int main() {
+ int a = 3;
+ int b = 5;
+ return a + b;
+}
+
+int f(int a, int v) {
+ return a + v;
+}