blob: b42f3a313e1e7781b1d385b701f5132a619f7155 [file] [log] [blame]
mod x {
pub struct A;
pub struct B;
}
// `.` is similar to `,` so list parsing should continue to closing `}`
use x::{A. B}; //~ ERROR expected one of `,`, `::`, `as`, or `}`, found `.`
fn main() {}