aboutsummaryrefslogtreecommitdiffstats
path: root/test/libyul/yulOptimizerTests/functionGrouper/grouped_but_not_ordered.yul
blob: 0abb5d8769f962d1b1b8a81b9398db4968e219a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
    function f() -> y { y := 8 }
    {
        let x := 2
    }
}
// ----
// functionGrouper
// {
//     {
//         {
//             let x := 2
//         }
//     }
//     function f() -> y
//     {
//         y := 8
//     }
// }