fmt.sol 467 B

12345678910111213141516171819
  1. // Repros of fmt issues
  2. // https://github.com/foundry-rs/foundry/issues/4403
  3. function errorIdentifier() {
  4. bytes memory error = bytes("");
  5. if (error.length > 0) {}
  6. }
  7. // https://github.com/foundry-rs/foundry/issues/7549
  8. function one() external {
  9. this.other({
  10. data: abi.encodeCall(
  11. this.other,
  12. (
  13. "bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla"
  14. )
  15. )
  16. });
  17. }