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

15 lines
228 B
Plaintext

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