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