mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
10 lines
278 B
Rust
10 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", "?"];
|
|
}
|