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

23 lines
234 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();
}
}
// ====
// compileViaYul: also
// ----
// constructor() ->