2022-08-11 12:42:16 -05:00
|
|
|
#[warn(clippy::disallowed_names)]
|
2022-06-16 10:39:06 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// `foo` is part of the default configuration
|
|
|
|
let foo = "bar";
|
2022-08-11 12:42:16 -05:00
|
|
|
// `ducks` was unrightfully disallowed
|
2022-06-16 10:39:06 -05:00
|
|
|
let ducks = ["quack", "quack"];
|
|
|
|
// `fox` is okay
|
|
|
|
let fox = ["what", "does", "the", "fox", "say", "?"];
|
|
|
|
}
|