summaryrefslogtreecommitdiffstats
path: root/tests/ui/for/for-loop-unconstrained-element-type.stderr
blob: b1b38f6b9194b1f12016ae4c3f2bb599e3453b63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0282]: type annotations needed
  --> $DIR/for-loop-unconstrained-element-type.rs:8:14
   |
LL |     for i in Vec::new() { }
   |              ^^^^^^^^ cannot infer type of the type parameter `T` declared on the struct `Vec`
   |
help: consider specifying the generic argument
   |
LL |     for i in Vec::<T>::new() { }
   |                 +++++

error: aborting due to previous error

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