solidity/test/libyul/yulOptimizerTests/structuralSimplifier/if_multi_unassigned_condition.yul
2019-04-03 14:58:20 +02:00

12 lines
141 B
Plaintext

{
let x, y
if x { mstore(0, 0) }
if y { mstore(0, 0) }
}
// ====
// step: structuralSimplifier
// ----
// {
// let x, y
// }