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