Feature/support memory consistency with Nova #197
GitHub Actions / Clippy
failed
Aug 12, 2024 in 0s
Clippy
4 errors
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 4 |
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 427 in zkmemory/src/nova/testcases.rs
github-actions / Clippy
this boolean expression can be simplified
error: this boolean expression can be simplified
--> zkmemory/src/nova/testcases.rs:427:17
|
427 | assert!(!res.is_ok());
| ^^^^^^^^^^^^ help: try: `res.is_err()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonminimal_bool
Check failure on line 364 in zkmemory/src/nova/testcases.rs
github-actions / Clippy
this boolean expression can be simplified
error: this boolean expression can be simplified
--> zkmemory/src/nova/testcases.rs:364:17
|
364 | assert!(!res.is_ok());
| ^^^^^^^^^^^^ help: try: `res.is_err()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonminimal_bool
Check failure on line 301 in zkmemory/src/nova/testcases.rs
github-actions / Clippy
this boolean expression can be simplified
error: this boolean expression can be simplified
--> zkmemory/src/nova/testcases.rs:301:17
|
301 | assert!(!res.is_ok());
| ^^^^^^^^^^^^ help: try: `res.is_err()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonminimal_bool
Check failure on line 238 in zkmemory/src/nova/testcases.rs
github-actions / Clippy
this boolean expression can be simplified
error: this boolean expression can be simplified
--> zkmemory/src/nova/testcases.rs:238:17
|
238 | assert!(!res.is_ok());
| ^^^^^^^^^^^^ help: try: `res.is_err()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonminimal_bool
note: the lint level is defined here
--> zkmemory/src/lib.rs:6:5
|
6 | warnings,
| ^^^^^^^^
= note: `#[deny(clippy::nonminimal_bool)]` implied by `#[deny(warnings)]`
Loading