1(module
2  (memory (export "memory") 1)
3  (func (export "_start")
4    (local $x i32)
5    (local.set $x (i32.const 1))
6    (local.set $x (i32.const 2))
7    (local.set $x (i32.const 3))
8  )
9)
10