2019-02-01 07:21:32 +00:00
|
|
|
// run-rustfix
|
2018-12-13 15:43:13 +00:00
|
|
|
|
2019-02-01 07:21:32 +00:00
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
struct SizedStruct(i32);
|
|
|
|
struct UnsizedStruct([i32]);
|
|
|
|
|
|
|
|
/// The following should trigger the lint
|
|
|
|
mod should_trigger {
|
|
|
|
use super::SizedStruct;
|
2018-12-13 15:43:13 +00:00
|
|
|
|
2019-02-01 07:21:32 +00:00
|
|
|
struct StructWithVecBox {
|
|
|
|
sized_type: Vec<Box<SizedStruct>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct A(Vec<Box<SizedStruct>>);
|
|
|
|
struct B(Vec<Vec<Box<(u32)>>>);
|
2018-12-13 15:43:13 +00:00
|
|
|
}
|
|
|
|
|
2019-02-01 07:21:32 +00:00
|
|
|
/// The following should not trigger the lint
|
|
|
|
mod should_not_trigger {
|
|
|
|
use super::UnsizedStruct;
|
|
|
|
|
|
|
|
struct C(Vec<Box<UnsizedStruct>>);
|
|
|
|
|
|
|
|
struct StructWithVecBoxButItsUnsized {
|
|
|
|
unsized_type: Vec<Box<UnsizedStruct>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct TraitVec<T: ?Sized> {
|
|
|
|
// Regression test for #3720. This was causing an ICE.
|
|
|
|
inner: Vec<Box<T>>,
|
|
|
|
}
|
2018-12-13 15:43:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|