mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
17 lines
240 B
Solidity
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: 101727
|