rust/tests/ui/suggestions/method-missing-parentheses....

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
746 B
Plaintext
Raw Normal View History

2020-02-11 05:58:36 +08:00
error: field expressions cannot have generic arguments
--> $DIR/method-missing-parentheses.rs:2:41
|
LL | let _ = vec![].into_iter().collect::<usize>;
| ^^^^^^^
error[E0615]: attempted to take value of method `collect` on type `std::vec::IntoIter<_>`
--> $DIR/method-missing-parentheses.rs:2:32
|
LL | let _ = vec![].into_iter().collect::<usize>;
2020-03-23 02:18:06 +08:00
| ^^^^^^^ method, not a field
|
help: use parentheses to call the method
|
LL | let _ = vec![].into_iter().collect::<usize>();
| ++
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0615`.