2020-07-02 00:32:12 -05:00
|
|
|
#![allow(unused_imports)]
|
|
|
|
|
|
|
|
pub mod x {
|
2017-10-24 15:39:15 -05:00
|
|
|
pub struct A;
|
|
|
|
pub struct B;
|
|
|
|
}
|
|
|
|
|
|
|
|
// `.` is similar to `,` so list parsing should continue to closing `}`
|
2018-06-01 14:51:00 -05:00
|
|
|
use x::{A. B}; //~ ERROR expected one of `,`, `::`, `as`, or `}`, found `.`
|
2017-10-24 15:39:15 -05:00
|
|
|
|
|
|
|
fn main() {}
|