solidity/test/libyul/yulOptimizerTests/expressionSimplifier/side_effects_in_for_condition.yul

15 lines
215 B
Plaintext

{
for {} div(create(0, 1, 0), shl(msize(), 1)) {}
{
}
}
// ====
// EVMVersion: >byzantium
// ----
// step: expressionSimplifier
//
// {
// for { } div(create(0, 1, 0), shl(msize(), 1)) { }
// { }
// }