Skip to content

feat: runtime test expectation file #40

feat: runtime test expectation file

feat: runtime test expectation file #40

GitHub Actions / clippy failed Jul 14, 2024 in 0s

clippy

1 error

Details

Results

Message level Amount
Internal compiler error 0
Error 1
Warning 0
Note 0
Help 0

Versions

  • rustc 1.79.0 (129f3b996 2024-06-10)
  • cargo 1.79.0 (ffa9cf99a 2024-06-03)
  • clippy 0.1.79 (129f3b9 2024-06-10)

Annotations

Check failure on line 424 in src/harness/report.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

redundant closure

error: redundant closure
   --> src/harness/report.rs:424:31
    |
424 |         input.parse().map_err(|e| D::Error::custom(e))
    |                               ^^^^^^^^^^^^^^^^^^^^^^^ help: replace the closure with the function itself: `D::Error::custom`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure
    = note: `-D clippy::redundant-closure` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(clippy::redundant_closure)]`