solidity/test/libyul/yulOptimizerTests/expressionSimplifier/side_effects_in_for_condition.yul
2019-09-17 12:32:46 +02:00

14 lines
212 B
Plaintext

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