]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/suggestions.rs
Rollup merge of #47922 - zackmdavis:and_the_case_of_the_unused_field_pattern, r=estebank
[rust.git] / src / test / ui / lint / suggestions.rs
1 // Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // ignore-tidy-tab
12
13 #![warn(unused_mut, unused_parens)] // UI tests pass `-A unused`—see Issue #43896
14 #![feature(no_debug)]
15
16 #[no_mangle] static SHENZHOU: usize = 1; // should suggest `pub`
17 //~^ WARN static is marked #[no_mangle]
18 #[no_mangle] const DISCOVERY: usize = 1; // should suggest `pub static` rather than `const`
19 //~^ ERROR const items should never be #[no_mangle]
20
21 #[no_mangle] // should suggest removal (generics can't be no-mangle)
22 pub fn defiant<T>(_t: T) {}
23 //~^ WARN functions generic over types must be mangled
24
25 #[no_mangle]
26 fn rio_grande() {} // should suggest `pub`
27 //~^ WARN function is marked
28
29 mod badlands {
30     // The private-no-mangle lints shouldn't suggest inserting `pub` when the
31     // item is already `pub` (but triggered the lint because, e.g., it's in a
32     // private module). (Issue #47383)
33     #[no_mangle] pub static DAUNTLESS: bool = true;
34     //~^ WARN static is marked
35     #[no_mangle] pub fn val_jean() {}
36     //~^ WARN function is marked
37 }
38
39 struct Equinox {
40     warp_factor: f32,
41 }
42
43 #[no_debug] // should suggest removal of deprecated attribute
44 //~^ WARN deprecated
45 fn main() {
46     while true { // should suggest `loop`
47     //~^ WARN denote infinite loops
48         let mut a = (1); // should suggest no `mut`, no parens
49         //~^ WARN does not need to be mutable
50         //~| WARN unnecessary parentheses
51         // the line after `mut` has a `\t` at the beginning, this is on purpose
52         let mut
53                 b = 1;
54         //~^^ WARN does not need to be mutable
55         let d = Equinox { warp_factor: 9.975 };
56         match d {
57             Equinox { warp_factor: warp_factor } => {} // should suggest shorthand
58             //~^ WARN this pattern is redundant
59         }
60         println!("{} {}", a, b);
61     }
62 }