solidity/test/libsolidity/semanticTests/various/contract_binary_dependencies.sol
2023-05-11 10:56:55 -05:00

21 lines
229 B
Solidity

contract A {
function f() public {
new B();
}
}
contract B {
function f() public {}
}
contract C {
function f() public {
new B();
}
}
// ----
// constructor() ->
// gas irOptimized: 100415