aboutsummaryrefslogtreecommitdiffstats
path: root/test/libyul/yulOptimizerTests/expressionInliner/simple.yul
blob: c186eafda687237795c3d0e61abe2943588d3bc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// yul
{
    function f() -> x:u256 { x := 2:u256 }
    let y:u256 := f()
}
// ----
// expressionInliner
// {
//     function f() -> x:u256
//     {
//         x := 2:u256
//     }
//     let y:u256 := 2:u256
// }