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

23 lines
377 B
Plaintext

{
let a
function f() -> x { x := g() }
function g() -> y { y := f() }
function h() -> z { z := g() }
a := h()
}
// ----
// step: circularReferencesPruner
//
// {
// {
// let a
// a := h()
// }
// function f() -> x
// { x := g() }
// function g() -> y
// { y := f() }
// function h() -> z
// { z := g() }
// }