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

9 lines
130 B
Plaintext

{
function f() -> x { x := g() }
function g() -> x { x := f() }
}
// ----
// step: circularReferencesPruner
//
// { { } }