solidity/test/libsolidity/semanticTests/functionCall/creation_function_call_no_args.sol
Alex Beregszaszi 0b6f87ef3c Update tests
2021-05-31 10:43:18 +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: 111154