solidity/test/libsolidity/semanticTests/functionCall/creation_function_call_no_args.sol
Djordje Mijovic b73e9f3eef Update tests.
2021-03-10 14:22:30 +01:00

17 lines
240 B
Solidity

contract C {
uint public i;
constructor() {
i = 2;
}
}
contract D {
function f() public returns (uint r) {
return new C().i();
}
}
// ====
// compileViaYul: also
// ----
// f() -> 2
// gas legacy: 101527