Test linting works #106
Annotations
2 errors
writing `&Vec` instead of `&[_]` involves a new object where a slice will do:
src/main.rs#L17
error: writing `&Vec` instead of `&[_]` involves a new object where a slice will do
--> src/main.rs:17:20
|
17 | ignored_users: &Vec<&str>,
| ^^^^^^^^^^ help: change this to: `&[&str]`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ptr_arg
= note: `-D clippy::ptr-arg` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::ptr_arg)]`
|
Check Rust
Clippy has exited with exit code 101
|