solidity/test/libyul/yulOptimizerTests/stackCompressor/noInline.yul
Daniel Kirchner 10618188dd Update tests.
2021-11-09 14:34:05 +01:00

13 lines
157 B
Plaintext

{
let x := 8
function f() { let y := 9 }
}
// ----
// step: stackCompressor
//
// {
// { let x := 8 }
// function f()
// { let y := 9 }
// }