aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in
diff options
context:
space:
mode:
authorymherklotz <ymherklotz@gmail.com>2017-03-10 17:38:14 +0000
committerymherklotz <ymherklotz@gmail.com>2017-03-10 17:38:14 +0000
commit7a61349a09b4db96794a2a90d2d488f020885442 (patch)
tree22194f4eeb49b3111531dc352df14264c3cfb973 /c_compiler/test/in
parentb9ab15bb2188543b8883ee8cf86540ed2684ed9d (diff)
downloadCompiler-7a61349a09b4db96794a2a90d2d488f020885442.tar.gz
Compiler-7a61349a09b4db96794a2a90d2d488f020885442.zip
Finished assignment expression
Diffstat (limited to 'c_compiler/test/in')
-rw-r--r--c_compiler/test/in/04.c9
-rw-r--r--c_compiler/test/in/05.c6
2 files changed, 0 insertions, 15 deletions
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;
-}