aboutsummaryrefslogtreecommitdiffstats
path: root/test/libjulia/yulOptimizerTests/expressionSimplifier/including_function_calls.yul
blob: c2ca504a17cf188dbde3393b2db2ed9c5babe0ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{
    function f() -> a {}
    let b := add(7, sub(f(), 7))
}
// ----
// expressionSimplifier
// {
//     function f() -> a
//     {
//     }
//     let b := f()
// }