2024-03-03 20:24:23 -06:00
|
|
|
//@ compile-flags: --extern aux_issue_121915 --edition 2015
|
|
|
|
//@ aux-build: aux-issue-121915.rs
|
|
|
|
|
|
|
|
extern crate aux_issue_121915;
|
|
|
|
|
2024-04-11 13:10:34 -05:00
|
|
|
#[deny(redundant_imports)]
|
2024-03-03 20:24:23 -06:00
|
|
|
fn main() {
|
|
|
|
use aux_issue_121915;
|
2024-04-11 13:10:34 -05:00
|
|
|
//~^ ERROR the item `aux_issue_121915` is imported redundantly
|
2024-03-03 20:24:23 -06:00
|
|
|
aux_issue_121915::item();
|
|
|
|
}
|