//@no-rustfix #![allow(dead_code)] #![feature(allocator_api)] use std::alloc::{AllocError, Allocator, Layout}; use std::ptr::NonNull; struct SizedStruct(i32); struct UnsizedStruct([i32]); struct BigStruct([i32; 10000]); struct DummyAllocator; unsafe impl Allocator for DummyAllocator { fn allocate(&self, layout: Layout) -> Result, AllocError> { todo!() } unsafe fn deallocate(&self, ptr: NonNull, layout: Layout) { todo!() } } /// The following should trigger the lint mod should_trigger { use super::{DummyAllocator, SizedStruct}; const C: Vec> = Vec::new(); static S: Vec> = Vec::new(); struct StructWithVecBox { sized_type: Vec>, } struct A(Vec>); struct B(Vec>>); fn allocator_global_defined_vec() -> Vec, std::alloc::Global> { Vec::new() } fn allocator_global_defined_box() -> Vec> { Vec::new() } fn allocator_match() -> Vec, DummyAllocator> { Vec::new_in(DummyAllocator) } } /// The following should not trigger the lint mod should_not_trigger { use super::{BigStruct, DummyAllocator, UnsizedStruct}; struct C(Vec>); struct D(Vec>); struct StructWithVecBoxButItsUnsized { unsized_type: Vec>, } struct TraitVec { // Regression test for #3720. This was causing an ICE. inner: Vec>, } fn allocator_mismatch() -> Vec> { Vec::new() } fn allocator_mismatch_2() -> Vec, DummyAllocator> { Vec::new_in(DummyAllocator) } } mod inner_mod { mod inner { pub struct S; } mod inner2 { use super::inner::S; pub fn f() -> Vec> { vec![] } } } // https://github.com/rust-lang/rust-clippy/issues/11417 fn in_closure() { let _ = |_: Vec>| {}; } fn main() {}