rust-clippy/tests/ui/disallowed_names.rs

58 lines
1.2 KiB
Rust
Raw Normal View History

2018-12-09 22:26:16 +00:00
#![allow(
dead_code,
clippy::similar_names,
clippy::single_match,
clippy::toplevel_ref_arg,
unused_mut,
unused_variables
)]
2022-06-08 19:08:37 +00:00
#![warn(clippy::disallowed_names)]
2016-02-22 14:42:24 +00:00
2017-02-08 13:58:07 +00:00
fn test(foo: ()) {}
2016-02-22 14:42:24 +00:00
fn main() {
2017-02-08 13:58:07 +00:00
let foo = 42;
let baz = 42;
2020-06-13 13:24:36 +00:00
let quux = 42;
// Unlike these others, `bar` is actually considered an acceptable name.
// Among many other legitimate uses, bar commonly refers to a period of time in music.
2020-06-13 13:24:36 +00:00
// See https://github.com/rust-lang/rust-clippy/issues/5225.
let bar = 42;
2016-02-22 14:42:24 +00:00
2020-06-13 13:24:36 +00:00
let food = 42;
let foodstuffs = 42;
let bazaar = 42;
2016-02-22 14:42:24 +00:00
match (42, Some(1337), Some(0)) {
2020-06-13 13:24:36 +00:00
(foo, Some(baz), quux @ Some(_)) => (),
2016-02-22 14:42:24 +00:00
_ => (),
}
}
2017-05-14 12:58:16 +00:00
fn issue_1647(mut foo: u8) {
2020-06-13 13:24:36 +00:00
let mut baz = 0;
if let Some(mut quux) = Some(42) {}
2017-05-14 12:58:16 +00:00
}
fn issue_1647_ref() {
2020-06-13 13:24:36 +00:00
let ref baz = 0;
if let Some(ref quux) = Some(42) {}
2017-05-14 12:58:16 +00:00
}
fn issue_1647_ref_mut() {
2020-06-13 13:24:36 +00:00
let ref mut baz = 0;
if let Some(ref mut quux) = Some(42) {}
2017-05-14 12:58:16 +00:00
}
mod tests {
fn issue_7305() {
2022-06-08 19:08:37 +00:00
// `disallowed_names` lint should not be triggered inside of the test code.
let foo = 0;
// Check that even in nested functions warning is still not triggered.
fn nested() {
let foo = 0;
}
}
}