mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
10 lines
202 B
Rust
10 lines
202 B
Rust
// Check for unused crate dep, no path
|
|
|
|
//@ edition:2018
|
|
//@ check-pass
|
|
//@ compile-flags: -Wunused-crate-dependencies
|
|
//@ aux-crate:bar=bar.rs
|
|
|
|
fn main() {}
|
|
//~^ WARNING external crate `bar` unused in
|