mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
23 lines
377 B
Plaintext
23 lines
377 B
Plaintext
{
|
|
let a
|
|
function f() -> x { x := g() }
|
|
function g() -> y { y := f() }
|
|
function h() -> z { z := g() }
|
|
a := h()
|
|
}
|
|
// ----
|
|
// step: circularReferencesPruner
|
|
//
|
|
// {
|
|
// {
|
|
// let a
|
|
// a := h()
|
|
// }
|
|
// function f() -> x
|
|
// { x := g() }
|
|
// function g() -> y
|
|
// { y := f() }
|
|
// function h() -> z
|
|
// { z := g() }
|
|
// }
|