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