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

11 lines
109 B
Plaintext

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