blob: cecf2c5c22b817afac61d27f3af52f5f59a8b301 [file] [log] [blame]
#![deny(unused_imports)]
struct S;
fn main() {
use S; //~ ERROR the item `S` is imported redundantly
let _s = S;
}