immutable.sol 252 B

12345678910
  1. contract x {
  2. int public immutable y = 1;
  3. function foo() public {
  4. y = 2;
  5. }
  6. }
  7. // ---- Expect: diagnostics ----
  8. // error: 5:17-18: cannot assign to immutable 'y' outside of constructor