]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/issue-57672.rs
Auto merge of #87641 - HackAttack:expand-unknown-option-message, r=wesleywiser
[rust.git] / src / test / 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() {}