solidity/test/libyul/yulOptimizerTests/structuralSimplifier/for_false_condition.sol

10 lines
133 B
Solidity

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