Given: ```rust use std::collections::HashMap; HashMap:: // completion works here ``` But: ```rust use std::{ collections::HashMap, }; HashMap:: // completion does not work here ``` I noticed this using the VS Code Rust plugin today.