summary refs log tree commit diff
path: root/src/test/ui/suggestions/method-missing-parentheses.stderr
blob: 6e4f7a84724bf7aaeee8302504d89659297d3b2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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>;
   |                                ^^^^^^^---------
   |                                |
   |                                help: use parentheses to call the method: `collect::<usize>()`

error: aborting due to 2 previous errors

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