1 2 3 4 5 6
contract C { uint immutable x = f(); function f() public pure returns (uint) { return 3; } } // ----