Closed
Description
When compiling https://github.com/pedrocr/rawloader with rust beta or nightly I get an unused_import warning that's a false positive (the compile fails without that import). The import in question is the following:
https://github.com/pedrocr/rawloader/blob/rawloader-0.29.0/src/decoders/ljpeg/decompressors.rs#L3
With stable everything works fine. The import is a little too broad (need to break up that code) and changing it to just the two structs that are needed fixes the warning. Still seems like a bug.