error.sol 230 B

1234567891011
  1. /// SPDX-License-Identifier: Apache-2.0
  2. contract error {
  3. uint64 public count = 1;
  4. function decrement() public returns (uint64) {
  5. print("Second call will FAIL!");
  6. count -= 1;
  7. return count;
  8. }
  9. }