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

10 lines
133 B
Solidity
Raw Normal View History

{
for { let a := 42 } 0 { a := a } {
let b := a
}
}
2019-04-01 14:33:46 +00:00
// ====
// step: structuralSimplifier
// ----
// { let a := 42 }