blob: 9694f80ab6d0f4231973bdaedfeffdf1397c969c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0425]: cannot find function `len` in this scope
--> $DIR/suggest-method-on-call-with-macro-rcvr.rs:4:17
|
LL | let hello = len(vec![]);
| ^^^ not found in this scope
|
help: use the `.` operator to call the method `len` on `&Vec<_>`
|
LL - let hello = len(vec![]);
LL + let hello = vec![].len();
|
error: aborting due to previous error
For more information about this error, try `rustc --explain E0425`.
|