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