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

15 lines
174 B
Plaintext

{
let a := mload(0)
for { } a {} {}
}
// ----
// step: expressionJoiner
//
// {
// {
// let a := mload(0)
// for { } a { }
// { }
// }
// }