rustsym icon indicating copy to clipboard operation
rustsym copied to clipboard

panics on some "use" statements

Open seik0ixtem opened this issue 6 years ago • 0 comments

// this works
use std::ffi::{OsStr};

// this does not
use std::{ffi::OsStr};

fn main() -> std::io::Result<()> { return Ok(()); }

With this code panic popup rises:

rustsym panicked while searching D:\workspace\rust\udpate_generator\src\test.rs for symbols. thread 'main' panicked at 'explicit panic', C:\Users\komp.cargo\registry\src\github.com-1ecc6299db9ec823\syntex_errors-0.59.1\src\diagnostic_builder.rs:204:13

seik0ixtem avatar Jun 29 '18 17:06 seik0ixtem