summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-100605.stderr
blob: be30eef2af48fb2bb7f091240ecbe58861ca5003 (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
error[E0308]: mismatched types
  --> $DIR/issue-100605.rs:4:18
   |
LL |     takes_option(&None);
   |     ------------ ^^^^^ expected `Option<&String>`, found `&Option<_>`
   |     |
   |     arguments to this function are incorrect
   |
   = note:   expected enum `Option<&String>`
           found reference `&Option<_>`
note: function defined here
  --> $DIR/issue-100605.rs:1:4
   |
LL | fn takes_option(_arg: Option<&String>) {}
   |    ^^^^^^^^^^^^ ---------------------
help: you can convert from `&Option<T>` to `Option<&T>` using `.as_ref()`
   |
LL |     takes_option(None.as_ref());
   |                  ~~~~~~~~~~~~~
help: consider removing the borrow
   |
LL -     takes_option(&None);
LL +     takes_option(None);
   |

error[E0308]: mismatched types
  --> $DIR/issue-100605.rs:8:18
   |
LL |     takes_option(&res);
   |     ------------ ^^^^
   |     |            |
   |     |            expected `Option<&String>`, found `&Option<String>`
   |     |            help: you can convert from `&Option<T>` to `Option<&T>` using `.as_ref()`: `res.as_ref()`
   |     arguments to this function are incorrect
   |
   = note:   expected enum `Option<&String>`
           found reference `&Option<String>`
note: function defined here
  --> $DIR/issue-100605.rs:1:4
   |
LL | fn takes_option(_arg: Option<&String>) {}
   |    ^^^^^^^^^^^^ ---------------------

error: aborting due to 2 previous errors

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