2023-07-27 11:40:22 +00:00
|
|
|
//@no-rustfix: overlapping suggestions
|
2022-05-08 19:20:25 +00:00
|
|
|
#![warn(clippy::rc_clone_in_vec_init)]
|
2023-06-06 20:56:57 +00:00
|
|
|
#![allow(clippy::useless_vec)]
|
2022-05-08 19:20:25 +00:00
|
|
|
use std::sync::{Arc, Mutex};
|
|
|
|
|
|
|
|
fn main() {}
|
|
|
|
|
|
|
|
fn should_warn_simple_case() {
|
|
|
|
let v = vec![Arc::new("x".to_string()); 2];
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: initializing a reference-counted pointer in `vec![elem; len]`
|
|
|
|
//~| NOTE: each element will point to the same `Arc` instance
|
2022-05-08 19:20:25 +00:00
|
|
|
}
|
|
|
|
|
2022-05-12 07:06:15 +00:00
|
|
|
fn should_warn_simple_case_with_big_indentation() {
|
|
|
|
if true {
|
|
|
|
let k = 1;
|
|
|
|
dbg!(k);
|
|
|
|
if true {
|
|
|
|
let v = vec![Arc::new("x".to_string()); 2];
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: initializing a reference-counted pointer in `vec![elem; len]`
|
|
|
|
//~| NOTE: each element will point to the same `Arc` instance
|
2022-05-12 07:06:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-08 19:20:25 +00:00
|
|
|
fn should_warn_complex_case() {
|
|
|
|
let v = vec![
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: initializing a reference-counted pointer in `vec![elem; len]`
|
|
|
|
//~| NOTE: each element will point to the same `Arc` instance
|
2022-05-08 19:20:25 +00:00
|
|
|
std::sync::Arc::new(Mutex::new({
|
|
|
|
let x = 1;
|
|
|
|
dbg!(x);
|
|
|
|
x
|
|
|
|
}));
|
|
|
|
2
|
|
|
|
];
|
2022-05-11 20:11:52 +00:00
|
|
|
|
|
|
|
let v1 = vec![
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: initializing a reference-counted pointer in `vec![elem; len]`
|
|
|
|
//~| NOTE: each element will point to the same `Arc` instance
|
2022-05-11 20:11:52 +00:00
|
|
|
Arc::new(Mutex::new({
|
|
|
|
let x = 1;
|
|
|
|
dbg!(x);
|
|
|
|
x
|
|
|
|
}));
|
|
|
|
2
|
|
|
|
];
|
2022-05-08 19:20:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn should_not_warn_custom_arc() {
|
|
|
|
#[derive(Clone)]
|
|
|
|
struct Arc;
|
|
|
|
|
|
|
|
impl Arc {
|
|
|
|
fn new() -> Self {
|
|
|
|
Arc
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let v = vec![Arc::new(); 2];
|
|
|
|
}
|
|
|
|
|
|
|
|
fn should_not_warn_vec_from_elem_but_not_arc() {
|
|
|
|
let v = vec![String::new(); 2];
|
|
|
|
let v1 = vec![1; 2];
|
|
|
|
let v2 = vec![
|
|
|
|
Box::new(std::sync::Arc::new({
|
|
|
|
let y = 3;
|
|
|
|
dbg!(y);
|
|
|
|
y
|
|
|
|
}));
|
|
|
|
2
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
fn should_not_warn_vec_macro_but_not_from_elem() {
|
|
|
|
let v = vec![Arc::new("x".to_string())];
|
|
|
|
}
|