blob: 5a16a1c71d1d828bf1eaf1db49a8f2b8690b1ef2 [file] [log] [blame]
(module
(func $tee
(local $x i32)
(local $y f64)
(drop (tee_local $x (i32.const 1)))
(drop (tee_local $y (f64.const 2)))
(set_local $x (tee_local $x (i32.const 3)))
(set_local $x (tee_local $x (tee_local $x (i32.const 3))))
(drop (tee_local $x (unreachable)))
)
)