mutability_03.sol 141 B

1234567
  1. contract test {
  2. int64 foo = 1844674;
  3. function bar() public view {
  4. foo = 102;
  5. }
  6. }