]> git.lizzy.rs Git - rust.git/blob - tests/ui/blacklisted_name.rs
Merge branch 'master' into rustfmt_tests
[rust.git] / tests / ui / blacklisted_name.rs
1 // Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution.
3 //
4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7 // option. This file may not be copied, modified, or distributed
8 // except according to those terms.
9
10 #![allow(
11     dead_code,
12     clippy::similar_names,
13     clippy::single_match,
14     clippy::toplevel_ref_arg,
15     unused_mut,
16     unused_variables
17 )]
18 #![warn(clippy::blacklisted_name)]
19
20 fn test(foo: ()) {}
21
22 fn main() {
23     let foo = 42;
24     let bar = 42;
25     let baz = 42;
26
27     let barb = 42;
28     let barbaric = 42;
29
30     match (42, Some(1337), Some(0)) {
31         (foo, Some(bar), baz @ Some(_)) => (),
32         _ => (),
33     }
34 }
35
36 fn issue_1647(mut foo: u8) {
37     let mut bar = 0;
38     if let Some(mut baz) = Some(42) {}
39 }
40
41 fn issue_1647_ref() {
42     let ref bar = 0;
43     if let Some(ref baz) = Some(42) {}
44 }
45
46 fn issue_1647_ref_mut() {
47     let ref mut bar = 0;
48     if let Some(ref mut baz) = Some(42) {}
49 }