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

20 lines
236 B
Plaintext
Raw Normal View History

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