solidity/test/libsolidity/semanticTests/various/contract_binary_dependencies.sol
Daniel Kirchner a9c21863d4 Update tests.
2022-08-15 16:24:10 +02:00

24 lines
262 B
Solidity

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