solidity/test/libyul/yulOptimizerTests/unusedPruner/multi_assignments.yul
Daniel Kirchner 10618188dd Update tests.
2021-11-09 14:34:05 +01:00

16 lines
156 B
Plaintext

{
let x, y
x := 1
y := 2
}
// ----
// step: unusedPruner
//
// {
// {
// let x, y
// x := 1
// y := 2
// }
// }