mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
228 B
Plaintext
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
|
|
//
|
|
// { { } }
|