solidity/test/libsolidity/syntaxTests/bytecodeReferences/circular_reference_internal_functions.sol

4 lines
112 B
Solidity

contract C { function foo() internal { new D(); } }
contract D { function foo() internal { new C(); } }
// ----