From 7a61349a09b4db96794a2a90d2d488f020885442 Mon Sep 17 00:00:00 2001 From: ymherklotz Date: Fri, 10 Mar 2017 17:38:14 +0000 Subject: Finished assignment expression --- c_compiler/test/in/04.c | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 c_compiler/test/in/04.c (limited to 'c_compiler/test/in/04.c') diff --git a/c_compiler/test/in/04.c b/c_compiler/test/in/04.c deleted file mode 100644 index 57cf697..0000000 --- a/c_compiler/test/in/04.c +++ /dev/null @@ -1,9 +0,0 @@ -int main() { - int a = 3; - int b = 5; - return a + b; -} - -int f(int a, int v) { - return a + v; -} -- cgit