aboutsummaryrefslogtreecommitdiffstats
path: root/test/libyul/yulOptimizerTests/functionHoister/single.yul
blob: ba922612efef35315a619a0f3040bdbe8462e55c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// yul
{
    let a:u256
    function f() {}
}
// ----
// functionHoister
// {
//     let a:u256
//     function f()
//     {
//     }
// }