mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
21 lines
746 B
Plaintext
21 lines
746 B
Plaintext
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>;
|
|
| ^^^^^^^ 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`.
|