solidity/test/libyul/yulOptimizerTests/expressionJoiner/no_replacement_in_loop_condition1.yul

16 lines
173 B
Plaintext
Raw Normal View History

2018-10-01 16:27:07 +00:00
{
for { let b := mload(1) } b {} {}
}
// ----
// expressionJoiner
// {
// for {
// let b := mload(1)
// }
// b
// {
// }
// {
// }
// }