rust/tests/ui-toml/disallowed_names_replace/disallowed_names.rs

11 lines
279 B
Rust
Raw Normal View History

#![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", "?"];
}