rust-clippy/tests/ui/zero_sized_btreemap_values.rs

80 lines
2 KiB
Rust

#![warn(clippy::zero_sized_map_values)]
use std::collections::BTreeMap;
const CONST_OK: Option<BTreeMap<String, usize>> = None;
const CONST_NOT_OK: Option<BTreeMap<String, ()>> = None;
//~^ ERROR: map with zero-sized value type
static STATIC_OK: Option<BTreeMap<String, usize>> = None;
static STATIC_NOT_OK: Option<BTreeMap<String, ()>> = None;
//~^ ERROR: map with zero-sized value type
type OkMap = BTreeMap<String, usize>;
type NotOkMap = BTreeMap<String, ()>;
//~^ ERROR: map with zero-sized value type
enum TestEnum {
Ok(BTreeMap<String, usize>),
NotOk(BTreeMap<String, ()>),
//~^ ERROR: map with zero-sized value type
}
struct Test {
ok: BTreeMap<String, usize>,
not_ok: BTreeMap<String, ()>,
//~^ ERROR: map with zero-sized value type
also_not_ok: Vec<BTreeMap<usize, ()>>,
//~^ ERROR: map with zero-sized value type
}
trait TestTrait {
type Output;
fn produce_output() -> Self::Output;
fn weird_map(&self, map: BTreeMap<usize, ()>);
//~^ ERROR: map with zero-sized value type
}
impl Test {
fn ok(&self) -> BTreeMap<String, usize> {
todo!()
}
fn not_ok(&self) -> BTreeMap<String, ()> {
//~^ ERROR: map with zero-sized value type
todo!()
}
}
impl TestTrait for Test {
type Output = BTreeMap<String, ()>;
fn produce_output() -> Self::Output {
todo!();
}
fn weird_map(&self, map: BTreeMap<usize, ()>) {
todo!();
}
}
fn test(map: BTreeMap<String, ()>, key: &str) -> BTreeMap<String, ()> {
//~^ ERROR: map with zero-sized value type
//~| ERROR: map with zero-sized value type
todo!();
}
fn test2(map: BTreeMap<String, usize>, key: &str) -> BTreeMap<String, usize> {
todo!();
}
fn main() {
let _: BTreeMap<String, ()> = BTreeMap::new();
//~^ ERROR: map with zero-sized value type
//~| ERROR: map with zero-sized value type
let _: BTreeMap<String, usize> = BTreeMap::new();
let _: BTreeMap<_, _> = std::iter::empty::<(String, ())>().collect();
//~^ ERROR: map with zero-sized value type
}