solidity/test/libyul/yulOptimizerTests/expressionJoiner/no_replacement_in_loop_condition1.yul
Daniel Kirchner 10618188dd Update tests.
2021-11-09 14:34:05 +01:00

13 lines
162 B
Plaintext

{
for { let b := mload(1) } b {} {}
}
// ----
// step: expressionJoiner
//
// {
// {
// for { let b := mload(1) } b { }
// { }
// }
// }