aboutsummaryrefslogtreecommitdiff
path: root/testbed/custom_subexp.c
diff options
context:
space:
mode:
Diffstat (limited to 'testbed/custom_subexp.c')
-rw-r--r--testbed/custom_subexp.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/testbed/custom_subexp.c b/testbed/custom_subexp.c
deleted file mode 100644
index bce5bdb..0000000
--- a/testbed/custom_subexp.c
+++ /dev/null
@@ -1,9 +0,0 @@
-int N = 0;
-void f() { N = 2; }
-int main() {
- int a, b;
- a = N + 1;
- f();
- b = N + 1;
- printf("%d\n", b);
-}