mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
12 lines
292 B
Rust
12 lines
292 B
Rust
//@ compile-flags: --extern aux_issue_121915 --edition 2015
|
|
//@ aux-build: aux-issue-121915.rs
|
|
|
|
extern crate aux_issue_121915;
|
|
|
|
#[deny(redundant_imports)]
|
|
fn main() {
|
|
use aux_issue_121915;
|
|
//~^ ERROR the item `aux_issue_121915` is imported redundantly
|
|
aux_issue_121915::item();
|
|
}
|