blob: dced29b667be5dc63b802ad826c87f77209af958 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# compare immutable-error.mu
def main [
local-scope
x:&:num <- new number:type
foo x
]
def foo x:&:num -> x:&:num [
local-scope
load-ingredients
*x <- copy 34
]
|