summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/needless_borrow_pat.stderr
blob: db3b52b8850e1cfd252e3eda54933f1abe4f8b60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
error: this pattern creates a reference to a reference
  --> $DIR/needless_borrow_pat.rs:59:14
   |
LL |         Some(ref x) => x,
   |              ^^^^^ help: try this: `x`
   |
   = note: `-D clippy::needless-borrow` implied by `-D warnings`

error: this pattern creates a reference to a reference
  --> $DIR/needless_borrow_pat.rs:65:14
   |
LL |         Some(ref x) => *x,
   |              ^^^^^
   |
help: try this
   |
LL |         Some(x) => x,
   |              ~     ~

error: this pattern creates a reference to a reference
  --> $DIR/needless_borrow_pat.rs:71:14
   |
LL |         Some(ref x) => {
   |              ^^^^^
   |
help: try this
   |
LL ~         Some(x) => {
LL |             f1(x);
LL ~             f1(x);
   |

error: this pattern creates a reference to a reference
  --> $DIR/needless_borrow_pat.rs:81:14
   |
LL |         Some(ref x) => m1!(x),
   |              ^^^^^ help: try this: `x`

error: this pattern creates a reference to a reference
  --> $DIR/needless_borrow_pat.rs:86:15
   |
LL |     let _ = |&ref x: &&String| {
   |               ^^^^^ help: try this: `x`

error: this pattern creates a reference to a reference
  --> $DIR/needless_borrow_pat.rs:91:10
   |
LL |     let (ref y,) = (&x,);
   |          ^^^^^
   |
help: try this
   |
LL ~     let (y,) = (&x,);
LL ~     let _: &String = y;
   |

error: this pattern creates a reference to a reference
  --> $DIR/needless_borrow_pat.rs:101:14
   |
LL |         Some(ref x) => x.0,
   |              ^^^^^ help: try this: `x`

error: this pattern creates a reference to a reference
  --> $DIR/needless_borrow_pat.rs:111:14
   |
LL |         E::A(ref x) | E::B(ref x) => *x,
   |              ^^^^^         ^^^^^
   |
help: try this
   |
LL |         E::A(x) | E::B(x) => x,
   |              ~         ~     ~

error: this pattern creates a reference to a reference
  --> $DIR/needless_borrow_pat.rs:117:21
   |
LL |         if let Some(ref x) = Some(&String::new());
   |                     ^^^^^ help: try this: `x`

error: this pattern creates a reference to a reference
  --> $DIR/needless_borrow_pat.rs:125:12
   |
LL | fn f2<'a>(&ref x: &&'a String) -> &'a String {
   |            ^^^^^
   |
help: try this
   |
LL ~ fn f2<'a>(&x: &&'a String) -> &'a String {
LL |     let _: &String = x;
LL ~     x
   |

error: this pattern creates a reference to a reference
  --> $DIR/needless_borrow_pat.rs:132:11
   |
LL |     fn f(&ref x: &&String) {
   |           ^^^^^ help: try this: `x`

error: this pattern creates a reference to a reference
  --> $DIR/needless_borrow_pat.rs:140:11
   |
LL |     fn f(&ref x: &&String) {
   |           ^^^^^
   |
help: try this
   |
LL ~     fn f(&x: &&String) {
LL ~         let _: &String = x;
   |

error: aborting due to 12 previous errors