solidity/test/libsolidity/semanticTests/functionCall/creation_function_call_with_salt.sol
2021-11-15 16:32:45 +01:00

25 lines
435 B
Solidity

contract C {
uint public i;
constructor(uint newI) {
i = newI;
}
}
contract D {
C c;
constructor(uint v) {
c = new C{salt: "abc"}(v);
}
function f() public returns (uint r) {
return c.i();
}
}
// ====
// EVMVersion: >=constantinople
// compileViaYul: also
// ----
// constructor(): 2 ->
// gas irOptimized: 200458
// gas legacy: 246202
// gas legacyOptimized: 195914
// f() -> 2