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 --------- c_compiler/test/in/05.c | 6 ------ 2 files changed, 15 deletions(-) delete mode 100644 c_compiler/test/in/04.c delete mode 100644 c_compiler/test/in/05.c (limited to 'c_compiler/test/in') 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; -} diff --git a/c_compiler/test/in/05.c b/c_compiler/test/in/05.c deleted file mode 100644 index 546012c..0000000 --- a/c_compiler/test/in/05.c +++ /dev/null @@ -1,6 +0,0 @@ -char *glob; - -int main() { - glob = "Yann"; - return 0; -} -- cgit