immutable_function.sol 231 B

12345678
  1. function x() immutable {}
  2. contract t {
  3. function y() immutable public { }
  4. }
  5. // ---- Expect: diagnostics ----
  6. // error: 1:14-23: function cannot be declared 'immutable'
  7. // error: 3:18-27: function cannot be declared 'immutable'