]> git.lizzy.rs Git - rust.git/blob - src/test/ui/did_you_mean/issue-40396.rs
Remove "here" from "expected one of X here"
[rust.git] / src / test / ui / did_you_mean / issue-40396.rs
1 fn main() {
2     (0..13).collect<Vec<i32>>();
3     //~^ ERROR chained comparison
4     Vec<i32>::new();
5     //~^ ERROR chained comparison
6     (0..13).collect<Vec<i32>();
7     //~^ ERROR chained comparison
8 }