summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/fn-to-method.stderr
blob: 36c17e60d3572ae83fc03588983dae37106b97e4 (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
error[E0425]: cannot find function `cmp` in this scope
  --> $DIR/fn-to-method.rs:8:13
   |
LL |     let x = cmp(&1, &2);
   |             ^^^ not found in this scope
   |
help: use the `.` operator to call the method `Ord::cmp` on `&{integer}`
   |
LL |     let x = (&1).cmp(&2);
   |             ~  ~~~~~~~~~

error[E0425]: cannot find function `len` in this scope
  --> $DIR/fn-to-method.rs:12:13
   |
LL |     let y = len([1, 2, 3]);
   |             ^^^ not found in this scope
   |
help: use the `.` operator to call the method `len` on `&[{integer}]`
   |
LL -     let y = len([1, 2, 3]);
LL +     let y = [1, 2, 3].len();
   |

error[E0425]: cannot find function `bar` in this scope
  --> $DIR/fn-to-method.rs:16:13
   |
LL |     let z = bar(Foo);
   |             ^^^ not found in this scope
   |
help: use the `.` operator to call the method `bar` on `Foo`
   |
LL -     let z = bar(Foo);
LL +     let z = Foo.bar();
   |

error: aborting due to 3 previous errors

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