]> git.proxmox.com Git - rustc.git/blame - src/test/ui/for/for-loop-unconstrained-element-type.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / for / for-loop-unconstrained-element-type.stderr
CommitLineData
b7449926 1error[E0282]: type annotations needed
923072b8 2 --> $DIR/for-loop-unconstrained-element-type.rs:8:14
b7449926 3 |
532ac7d7 4LL | for i in Vec::new() { }
923072b8
FG
5 | ^^^^^^^^ cannot infer type of the type parameter `T` declared on the struct `Vec`
6 |
7help: consider specifying the generic argument
8 |
9LL | for i in Vec::<T>::new() { }
10 | +++++
b7449926
XL
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0282`.