solidity/test/libyul/yulOptimizerTests/functionGrouper/grouped_but_not_ordered.yul

15 lines
183 B
Plaintext
Raw Normal View History

2019-01-08 14:03:40 +00:00
{
function f() -> y { y := 8 }
{
let x := 2
}
}
// ----
// step: functionGrouper
//
2019-01-08 14:03:40 +00:00
// {
// { { let x := 2 } }
2019-01-08 14:03:40 +00:00
// function f() -> y
// { y := 8 }
2019-01-08 14:03:40 +00:00
// }