solidity/test/libyul/yulOptimizerTests/disambiguator/if_statement.yul

19 lines
287 B
Plaintext
Raw Normal View History

2018-10-10 13:15:38 +00:00
{
{ let a:u256, b:u256, c:u256 }
{
let a:bool
if a { let b:bool := a }
}
}
2019-04-01 14:33:46 +00:00
// ====
// step: disambiguator
// yul: true
2018-10-10 13:15:38 +00:00
// ----
// {
// { let a:u256, b:u256, c:u256 }
2018-10-10 13:15:38 +00:00
// {
// let a_1:bool
// if a_1 { let b_2:bool := a_1 }
2018-10-10 13:15:38 +00:00
// }
// }