immutable.sol 145 B

12345678
  1. contract x {
  2. int public immutable y = 1;
  3. function foo() public {
  4. y = 2;
  5. }
  6. }