mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 13:13:34 +00:00
87efce4fa2
This adds a `àllow-useless-vec-in-test` configuration which, when set to `true` will allow the `useless_vec` lint in `#[test]` functions and code within `#[cfg(test)]`. It also moves a `is_in_test` helper to `clippy_utils`.
26 lines
380 B
Rust
26 lines
380 B
Rust
//@compile-flags: --test
|
|
#![warn(clippy::useless_vec)]
|
|
#![allow(clippy::unnecessary_operation, clippy::no_effect)]
|
|
|
|
fn foo(_: &[u32]) {}
|
|
|
|
fn main() {
|
|
foo(&vec![1_u32]);
|
|
}
|
|
|
|
#[test]
|
|
pub fn in_test() {
|
|
foo(&vec![2_u32]);
|
|
}
|
|
|
|
#[cfg(test)]
|
|
fn in_cfg_test() {
|
|
foo(&vec![3_u32]);
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod mod1 {
|
|
fn in_cfg_test_mod() {
|
|
super::foo(&vec![4_u32]);
|
|
}
|
|
}
|