From 27134d31ce42631fca12295f4064d55de8dfdee8 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 10 Mar 2017 22:11:04 +0000 Subject: moved test cases --- c_compiler/test/in/SimpleScope.c | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 c_compiler/test/in/SimpleScope.c (limited to 'c_compiler/test/in/SimpleScope.c') diff --git a/c_compiler/test/in/SimpleScope.c b/c_compiler/test/in/SimpleScope.c deleted file mode 100644 index 85294a1..0000000 --- a/c_compiler/test/in/SimpleScope.c +++ /dev/null @@ -1,7 +0,0 @@ -int main() { - int x = 23; - { - x = 123; - } - return x; -} -- cgit