about summary refs log tree commit diff
path: root/tests/ui/suggestions/fn-to-method.import_trait_associated_functions.stderr
blob: 593a90d728faae492947f418fc41fbe3d1881395 (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
error[E0425]: cannot find function `cmp` in this scope
  --> $DIR/fn-to-method.rs:12:13
   |
LL |     let x = cmp(&1, &2);
   |             ^^^ not found in this scope
   |
help: consider importing one of these associated functions
   |
LL + use std::cmp::Ord::cmp;
   |
LL + use std::iter::Iterator::cmp;
   |

error[E0425]: cannot find function `len` in this scope
  --> $DIR/fn-to-method.rs:16:13
   |
LL |     let y = len([1, 2, 3]);
   |             ^^^ not found in this scope
   |
help: consider importing this associated function
   |
LL + use std::iter::ExactSizeIterator::len;
   |

error[E0425]: cannot find function `bar` in this scope
  --> $DIR/fn-to-method.rs:20: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`.