mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
125 lines
2.7 KiB
Rust
125 lines
2.7 KiB
Rust
#![warn(clippy::all)]
|
|
#![allow(clippy::boxed_local, clippy::disallowed_names)]
|
|
|
|
pub struct MyStruct;
|
|
|
|
pub struct SubT<T> {
|
|
foo: T,
|
|
}
|
|
|
|
mod outer_box {
|
|
use crate::MyStruct;
|
|
use crate::SubT;
|
|
use std::boxed::Box;
|
|
use std::rc::Rc;
|
|
use std::sync::Arc;
|
|
|
|
pub fn box_test6<T>(foo: Box<Rc<T>>) {}
|
|
|
|
pub fn box_test7<T>(foo: Box<Arc<T>>) {}
|
|
|
|
pub fn box_test8() -> Box<Rc<SubT<usize>>> {
|
|
unimplemented!();
|
|
}
|
|
|
|
pub fn box_test9<T>(foo: Box<Arc<T>>) -> Box<Arc<SubT<T>>> {
|
|
unimplemented!();
|
|
}
|
|
}
|
|
|
|
mod outer_rc {
|
|
use crate::MyStruct;
|
|
use crate::SubT;
|
|
use std::boxed::Box;
|
|
use std::rc::Rc;
|
|
use std::sync::Arc;
|
|
|
|
pub fn rc_test5(a: Rc<Box<bool>>) {}
|
|
|
|
pub fn rc_test7(a: Rc<Arc<bool>>) {}
|
|
|
|
pub fn rc_test8() -> Rc<Box<SubT<usize>>> {
|
|
unimplemented!();
|
|
}
|
|
|
|
pub fn rc_test9<T>(foo: Rc<Arc<T>>) -> Rc<Arc<SubT<T>>> {
|
|
unimplemented!();
|
|
}
|
|
}
|
|
|
|
mod outer_arc {
|
|
use crate::MyStruct;
|
|
use crate::SubT;
|
|
use std::boxed::Box;
|
|
use std::rc::Rc;
|
|
use std::sync::Arc;
|
|
|
|
pub fn arc_test5(a: Arc<Box<bool>>) {}
|
|
|
|
pub fn arc_test6(a: Arc<Rc<bool>>) {}
|
|
|
|
pub fn arc_test8() -> Arc<Box<SubT<usize>>> {
|
|
unimplemented!();
|
|
}
|
|
|
|
pub fn arc_test9<T>(foo: Arc<Rc<T>>) -> Arc<Rc<SubT<T>>> {
|
|
unimplemented!();
|
|
}
|
|
}
|
|
|
|
// https://github.com/rust-lang/rust-clippy/issues/7487
|
|
mod box_dyn {
|
|
use std::boxed::Box;
|
|
use std::rc::Rc;
|
|
use std::sync::Arc;
|
|
|
|
pub trait T {}
|
|
|
|
struct S {
|
|
a: Box<Box<dyn T>>,
|
|
b: Rc<Box<dyn T>>,
|
|
c: Arc<Box<dyn T>>,
|
|
}
|
|
|
|
pub fn test_box(_: Box<Box<dyn T>>) {}
|
|
pub fn test_rc(_: Rc<Box<dyn T>>) {}
|
|
pub fn test_arc(_: Arc<Box<dyn T>>) {}
|
|
pub fn test_rc_box(_: Rc<Box<Box<dyn T>>>) {}
|
|
}
|
|
|
|
// https://github.com/rust-lang/rust-clippy/issues/8604
|
|
mod box_fat_ptr {
|
|
use std::boxed::Box;
|
|
use std::path::Path;
|
|
use std::rc::Rc;
|
|
use std::sync::Arc;
|
|
|
|
pub struct DynSized {
|
|
foo: [usize],
|
|
}
|
|
|
|
struct S {
|
|
a: Box<Box<str>>,
|
|
b: Rc<Box<str>>,
|
|
c: Arc<Box<str>>,
|
|
|
|
e: Box<Box<[usize]>>,
|
|
f: Box<Box<Path>>,
|
|
g: Box<Box<DynSized>>,
|
|
}
|
|
|
|
pub fn test_box_str(_: Box<Box<str>>) {}
|
|
pub fn test_rc_str(_: Rc<Box<str>>) {}
|
|
pub fn test_arc_str(_: Arc<Box<str>>) {}
|
|
|
|
pub fn test_box_slice(_: Box<Box<[usize]>>) {}
|
|
pub fn test_box_path(_: Box<Box<Path>>) {}
|
|
pub fn test_box_custom(_: Box<Box<DynSized>>) {}
|
|
|
|
pub fn test_rc_box_str(_: Rc<Box<Box<str>>>) {}
|
|
pub fn test_rc_box_slice(_: Rc<Box<Box<[usize]>>>) {}
|
|
pub fn test_rc_box_path(_: Rc<Box<Box<Path>>>) {}
|
|
pub fn test_rc_box_custom(_: Rc<Box<Box<DynSized>>>) {}
|
|
}
|
|
|
|
fn main() {}
|