about summary refs log tree commit diff stats
path: root/mutable.mu
diff options
context:
space:
mode:
Diffstat (limited to 'mutable.mu')
-rw-r--r--mutable.mu13
1 files changed, 0 insertions, 13 deletions
diff --git a/mutable.mu b/mutable.mu
deleted file mode 100644
index 1a1ec7f0..00000000
--- a/mutable.mu
+++ /dev/null
@@ -1,13 +0,0 @@
-# compare immutable-error.mu
-
-def main [
-  local-scope
-  x:&:num <- new number:type
-  foo x
-]
-
-def foo x:&:num -> x:&:num [
-  local-scope
-  load-inputs
-  *x <- copy 34
-]