solidity/test/libyul/yulOptimizerTests/expressionInliner/simple.yul

14 lines
216 B
Plaintext
Raw Normal View History

2018-10-11 14:58:21 +00:00
{
function f() -> x:u256 { x := 2:u256 }
let y:u256 := f()
}
2019-04-01 14:33:46 +00:00
// ====
// step: expressionInliner
// yul: true
2018-10-11 14:58:21 +00:00
// ----
// {
// function f() -> x:u256
// { x := 2:u256 }
2018-10-11 14:58:21 +00:00
// let y:u256 := 2:u256
// }