// run-rustfix // This test checks that the following error is emitted and the suggestion works: // // ``` // let _ = Vec::>>::new(); // ^^ help: remove extra angle brackets // ``` fn main() { let _ = Vec::::new(); //~^ ERROR unmatched angle bracket let _ = Vec::::new(); //~^ ERROR unmatched angle bracket let _ = Vec::::new(); //~^ ERROR unmatched angle bracket let _ = Vec::::new(); //~^ ERROR unmatched angle bracket }