This code produces no warning: ``` rust use std::vec::Vec; fn main() { Vec::<u8>::new(); } ``` A warning would be useful for old code that imports items which have since made it into the prelude.