]> git.lizzy.rs Git - rust.git/blob - tests/ui/used_underscore_binding.rs
Merge pull request #1747 from Manishearth/mut_fp
[rust.git] / tests / ui / used_underscore_binding.rs
1 #![feature(plugin)]
2 #![plugin(clippy)]
3 #![deny(clippy)]
4
5 #![allow(blacklisted_name)]
6 #![deny(used_underscore_binding)]
7
8 macro_rules! test_macro {
9     () => {{
10         let _foo = 42;
11         _foo + 1
12     }}
13 }
14
15 /// Test that we lint if we use a binding with a single leading underscore
16 fn prefix_underscore(_foo: u32) -> u32 {
17     _foo + 1
18 }
19
20 /// Test that we lint if we use a `_`-variable defined outside within a macro expansion
21 fn in_macro(_foo: u32) {
22     println!("{}", _foo);
23     assert_eq!(_foo, _foo);
24
25     test_macro!() + 1;
26 }
27
28 // Struct for testing use of fields prefixed with an underscore
29 struct StructFieldTest {
30     _underscore_field: u32,
31 }
32
33 /// Test that we lint the use of a struct field which is prefixed with an underscore
34 fn in_struct_field() {
35     let mut s = StructFieldTest { _underscore_field: 0 };
36     s._underscore_field += 1;
37 }
38
39 /// Test that we do not lint if the underscore is not a prefix
40 fn non_prefix_underscore(some_foo: u32) -> u32 {
41     some_foo + 1
42 }
43
44 /// Test that we do not lint if we do not use the binding (simple case)
45 fn unused_underscore_simple(_foo: u32) -> u32 {
46     1
47 }
48
49 /// Test that we do not lint if we do not use the binding (complex case). This checks for
50 /// compatibility with the built-in `unused_variables` lint.
51 fn unused_underscore_complex(mut _foo: u32) -> u32 {
52     _foo += 1;
53     _foo = 2;
54     1
55 }
56
57 ///Test that we do not lint for multiple underscores
58 fn multiple_underscores(__foo: u32) -> u32 {
59     __foo + 1
60 }
61
62 // Non-variable bindings with preceding underscore
63 fn _fn_test() {}
64 struct _StructTest;
65 enum _EnumTest {
66     _Empty,
67     _Value(_StructTest)
68 }
69
70 /// Test that we do not lint for non-variable bindings
71 fn non_variables() {
72     _fn_test();
73     let _s = _StructTest;
74     let _e = match _EnumTest::_Value(_StructTest) {
75         _EnumTest::_Empty => 0,
76         _EnumTest::_Value(_st) => 1,
77     };
78     let f = _fn_test;
79     f();
80 }
81
82 fn main() {
83     let foo = 0u32;
84     // tests of unused_underscore lint
85     let _ = prefix_underscore(foo);
86     in_macro(foo);
87     in_struct_field();
88     // possible false positives
89     let _ = non_prefix_underscore(foo);
90     let _ = unused_underscore_simple(foo);
91     let _ = unused_underscore_complex(foo);
92     let _ = multiple_underscores(foo);
93     non_variables();
94 }