mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 03:33:59 +00:00
10 lines
127 B
Rust
10 lines
127 B
Rust
#![deny(unused_imports)]
|
|
|
|
struct S;
|
|
|
|
fn main() {
|
|
use S; //~ ERROR the item `S` is imported redundantly
|
|
|
|
let _s = S;
|
|
}
|