solidity/test/libyul/yulOptimizerTests/circularReferencesPruner/nested_different_names.yul

15 lines
229 B
Plaintext

{
{
function a() -> x { x := b() }
function b() -> y { y := a() }
}
{
function c() -> z { z := d() }
function d() -> w { w := c() }
}
}
// ====
// step: circularReferencesPruner
// ----
// { }