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

12 lines
143 B
Solidity

{
for { let a := 42 } 0 { a := a } {
let b := a
}
}
// ====
// step: structuralSimplifier
// ----
// {
// let a := 42
// }