mutability_10.sol 227 B

1234567
  1. contract test {
  2. function bar() public view returns (int64) {
  3. return 102;
  4. }
  5. }
  6. // ---- Expect: diagnostics ----
  7. // warning: 2:13-55: function declared 'view' can be declared 'pure'