solidity/test/libsolidity/semanticTests/immutable/getter_call_in_constructor.sol

18 lines
311 B
Solidity
Raw Normal View History

2020-04-02 15:13:31 +00:00
contract A {
uint immutable public x = 1;
uint public y;
2020-06-23 12:14:24 +00:00
constructor() {
2020-04-02 15:13:31 +00:00
y = this.x();
}
}
contract C {
function f() public returns (bool) {
try new A() { return false; }
catch { return true; }
}
}
// ====
// EVMVersion: >=tangerineWhistle
// ----
// f() -> true