]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/issue-57672.rs
Rollup merge of #107127 - uweigand:s390x-sanitizer, r=Mark-Simulacrum
[rust.git] / tests / ui / suggestions / issue-57672.rs
1 // aux-build:foo.rs
2 // compile-flags:--extern foo
3 // check-pass
4 // edition:2018
5
6 #![deny(unused_extern_crates)]
7
8 extern crate foo as foo_renamed;
9
10 pub mod m {
11     pub use foo_renamed::Foo;
12 }
13
14 fn main() {}