11 lines
165 B
Rust
11 lines
165 B
Rust
//@ check-pass
|
|
#![deny(unused_imports)]
|
|
|
|
struct S;
|
|
|
|
fn main() {
|
|
use S; //FIXME(unused_imports): ~ ERROR the item `S` is imported redundantly
|
|
|
|
let _s = S;
|
|
}
|