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

15 lines
228 B
Plaintext

{
{
function z() -> x { x := y() }
function y() -> x { x := z() }
}
{
function z() -> x { x := y() }
function y() -> x { x := z() }
}
}
// ----
// step: circularReferencesPruner
//
// { { } }