rust/tests/ui-toml/disallowed_names_replace/disallowed_names.rs
2022-07-29 19:35:39 +01:00

11 lines
278 B
Rust

#[warn(clippy::disallowed_names)]
fn main() {
// `foo` is part of the default configuration
let foo = "bar";
// `ducks` was unrightfully disallowed
let ducks = ["quack", "quack"];
// `fox` is okay
let fox = ["what", "does", "the", "fox", "say", "?"];
}