aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/SimpleScope.c
diff options
context:
space:
mode:
Diffstat (limited to 'c_compiler/test/in/SimpleScope.c')
-rw-r--r--c_compiler/test/in/SimpleScope.c7
1 files changed, 0 insertions, 7 deletions
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;
-}