summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/copied-and-cloned.stderr
blob: 87b0624d48be1cbae96c9e350a17e1b7d5a1cbbc (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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
error[E0308]: mismatched types
  --> $DIR/copied-and-cloned.rs:10:13
   |
LL |     lol.x = x.clone();
   |     -----   ^^^^^^^^^ expected `Option<String>`, found `Option<&String>`
   |     |
   |     expected due to the type of this binding
   |
   = note: expected enum `Option<String>`
              found enum `Option<&String>`
help: use `Option::cloned` to clone the value inside the `Option`
   |
LL |     lol.x = x.clone().cloned();
   |                      +++++++++

error[E0308]: mismatched types
  --> $DIR/copied-and-cloned.rs:17:26
   |
LL |     expect::<Option<()>>(x);
   |     -------------------- ^ expected `Option<()>`, found `Option<&()>`
   |     |
   |     arguments to this function are incorrect
   |
   = note: expected enum `Option<()>`
              found enum `Option<&()>`
note: function defined here
  --> $DIR/copied-and-cloned.rs:3:4
   |
LL | fn expect<T>(_: T) {}
   |    ^^^^^^    ----
help: use `Option::copied` to copy the value inside the `Option`
   |
LL |     expect::<Option<()>>(x.copied());
   |                           +++++++++

error[E0308]: mismatched types
  --> $DIR/copied-and-cloned.rs:21:30
   |
LL |     expect::<Result<(), ()>>(x);
   |     ------------------------ ^ expected `Result<(), ()>`, found `Result<&(), _>`
   |     |
   |     arguments to this function are incorrect
   |
   = note: expected enum `Result<(), ()>`
              found enum `Result<&(), _>`
note: function defined here
  --> $DIR/copied-and-cloned.rs:3:4
   |
LL | fn expect<T>(_: T) {}
   |    ^^^^^^    ----
help: use `Result::copied` to copy the value inside the `Result`
   |
LL |     expect::<Result<(), ()>>(x.copied());
   |                               +++++++++

error[E0308]: mismatched types
  --> $DIR/copied-and-cloned.rs:26:30
   |
LL |     expect::<Option<String>>(x);
   |     ------------------------ ^ expected `Option<String>`, found `Option<&String>`
   |     |
   |     arguments to this function are incorrect
   |
   = note: expected enum `Option<String>`
              found enum `Option<&String>`
note: function defined here
  --> $DIR/copied-and-cloned.rs:3:4
   |
LL | fn expect<T>(_: T) {}
   |    ^^^^^^    ----
help: use `Option::cloned` to clone the value inside the `Option`
   |
LL |     expect::<Option<String>>(x.cloned());
   |                               +++++++++

error[E0308]: mismatched types
  --> $DIR/copied-and-cloned.rs:30:34
   |
LL |     expect::<Result<String, ()>>(x);
   |     ---------------------------- ^ expected `Result<String, ()>`, found `Result<&String, _>`
   |     |
   |     arguments to this function are incorrect
   |
   = note: expected enum `Result<String, ()>`
              found enum `Result<&String, _>`
note: function defined here
  --> $DIR/copied-and-cloned.rs:3:4
   |
LL | fn expect<T>(_: T) {}
   |    ^^^^^^    ----
help: use `Result::cloned` to clone the value inside the `Result`
   |
LL |     expect::<Result<String, ()>>(x.cloned());
   |                                   +++++++++

error[E0308]: mismatched types
  --> $DIR/copied-and-cloned.rs:37:25
   |
LL |     println!("{}", x == y);
   |                         ^ expected `Option<String>`, found `Option<&String>`
   |
   = note: expected enum `Option<String>`
              found enum `Option<&String>`
help: use `Option::cloned` to clone the value inside the `Option`
   |
LL |     println!("{}", x == y.cloned());
   |                          +++++++++

error[E0308]: mismatched types
  --> $DIR/copied-and-cloned.rs:45:25
   |
LL |     println!("{}", x == y);
   |                         ^ expected `Option<()>`, found `Option<&mut ()>`
   |
   = note: expected enum `Option<()>`
              found enum `Option<&mut ()>`
help: use `Option::copied` to copy the value inside the `Option`
   |
LL |     println!("{}", x == y.copied());
   |                          +++++++++

error[E0308]: mismatched types
  --> $DIR/copied-and-cloned.rs:52:25
   |
LL |     println!("{}", x == y);
   |                         ^ expected `Option<String>`, found `Option<&mut String>`
   |
   = note: expected enum `Option<String>`
              found enum `Option<&mut String>`
help: use `Option::cloned` to clone the value inside the `Option`
   |
LL |     println!("{}", x == y.cloned());
   |                          +++++++++

error: aborting due to 8 previous errors

For more information about this error, try `rustc --explain E0308`.