solidity/test/libsolidity/semanticTests/functionCall/creation_function_call_with_args.sol
Daniel Kirchner 44da8507b1 Change default EVM version to Shanghai.
Co-authored-by: Rodrigo Q. Saramago <rodrigoqsaramago@gmail.com>
2023-05-08 16:34:23 +02:00

22 lines
359 B
Solidity

contract C {
uint public i;
constructor(uint newI) {
i = newI;
}
}
contract D {
C c;
constructor(uint v) {
c = new C(v);
}
function f() public returns (uint r) {
return c.i();
}
}
// ----
// constructor(): 2 ->
// gas irOptimized: 193985
// gas legacy: 241212
// gas legacyOptimized: 192949
// f() -> 2