blob: e4e94bb9492371c811fb2a0ccc56fef040e673df [file] [log] [blame]
fn main() {
(0..13).collect<Vec<i32>>();
//~^ ERROR comparison operators cannot be chained
Vec<i32>::new();
//~^ ERROR comparison operators cannot be chained
(0..13).collect<Vec<i32>();
//~^ ERROR comparison operators cannot be chained
}