solidity/test/libsolidity/semanticTests/various/contract_binary_dependencies.sol

24 lines
262 B
Solidity
Raw Normal View History

contract A {
function f() public {
new B();
}
}
contract B {
function f() public {}
}
contract C {
function f() public {
new B();
}
}
// ====
// compileToEwasm: also
// ----
// constructor() ->
2022-08-10 16:45:38 +00:00
// gas irOptimized: 100415