rust/tests/ui/disallowed_names.rs

59 lines
1.3 KiB
Rust
Raw Normal View History

2018-12-09 16:26:16 -06:00
#![allow(
dead_code,
2023-06-10 06:43:30 -05:00
clippy::needless_if,
2018-12-09 16:26:16 -06:00
clippy::similar_names,
clippy::single_match,
clippy::toplevel_ref_arg,
unused_mut,
unused_variables
)]
2022-06-08 14:08:37 -05:00
#![warn(clippy::disallowed_names)]
2016-02-22 08:42:24 -06:00
2017-02-08 07:58:07 -06:00
fn test(foo: ()) {}
2016-02-22 08:42:24 -06:00
fn main() {
2017-02-08 07:58:07 -06:00
let foo = 42;
let baz = 42;
2020-06-13 08:24:36 -05: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 08:24:36 -05:00
// See https://github.com/rust-lang/rust-clippy/issues/5225.
let bar = 42;
2016-02-22 08:42:24 -06:00
2020-06-13 08:24:36 -05:00
let food = 42;
let foodstuffs = 42;
let bazaar = 42;
2016-02-22 08:42:24 -06:00
match (42, Some(1337), Some(0)) {
2020-06-13 08:24:36 -05:00
(foo, Some(baz), quux @ Some(_)) => (),
2016-02-22 08:42:24 -06:00
_ => (),
}
}
2017-05-14 07:58:16 -05:00
fn issue_1647(mut foo: u8) {
2020-06-13 08:24:36 -05:00
let mut baz = 0;
if let Some(mut quux) = Some(42) {}
2017-05-14 07:58:16 -05:00
}
fn issue_1647_ref() {
2020-06-13 08:24:36 -05:00
let ref baz = 0;
if let Some(ref quux) = Some(42) {}
2017-05-14 07:58:16 -05:00
}
fn issue_1647_ref_mut() {
2020-06-13 08:24:36 -05:00
let ref mut baz = 0;
if let Some(ref mut quux) = Some(42) {}
2017-05-14 07:58:16 -05:00
}
mod tests {
fn issue_7305() {
2022-06-08 14:08:37 -05: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;
}
}
}