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

4 lines
114 B
Solidity

library L1 { function foo() internal { L2.foo(); } }
library L2 { function foo() internal { L1.foo(); } }
// ----