2020-03-10 17:15:50 +00:00
|
|
|
contract C {
|
|
|
|
uint immutable x;
|
2020-06-23 12:14:24 +00:00
|
|
|
constructor() {
|
2020-03-10 17:15:50 +00:00
|
|
|
x = f();
|
|
|
|
}
|
|
|
|
|
2023-06-02 10:40:19 +00:00
|
|
|
function f() public view returns (uint) { return 3 + x; }
|
2020-03-10 17:15:50 +00:00
|
|
|
}
|