mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-01 00:38:23 +00:00
10 lines
130 B
Rust
10 lines
130 B
Rust
#![deny(redundant_imports)]
|
|
|
|
struct S;
|
|
|
|
fn main() {
|
|
use S; //~ ERROR the item `S` is imported redundantly
|
|
|
|
let _s = S;
|
|
}
|