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

14 lines
212 B
Plaintext
Raw Normal View History

2019-09-13 16:09:09 +00:00
{
for {} div(create(0, 1, 0), shl(msize(), 1)) {}
{
}
}
// ====
// step: expressionSimplifier
// EVMVersion: >byzantium
// ----
// {
// for { } div(create(0, 1, 0), shl(msize(), 1)) { }
// { }
// }