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

15 lines
224 B
Plaintext
Raw Normal View History

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