2022-06-08 20:08:37 +01:00
|
|
|
#[warn(clippy::disallowed_names)]
|
2022-06-04 14:35:44 +02:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// `foo` is part of the default configuration
|
|
|
|
let foo = "bar";
|
2022-06-08 16:20:30 +01:00
|
|
|
// `ducks` was unrightfully disallowed
|
2022-06-04 14:35:44 +02:00
|
|
|
let ducks = ["quack", "quack"];
|
|
|
|
// `fox` is okay
|
|
|
|
let fox = ["what", "does", "the", "fox", "say", "?"];
|
|
|
|
}
|