mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 15:06:20 +00:00
11 lines
193 B
Rust
11 lines
193 B
Rust
// Check for unused crate dep, no path
|
|
|
|
//@ edition:2018
|
|
//@ check-pass
|
|
//@ aux-crate:bar=bar.rs
|
|
|
|
#![warn(unused_crate_dependencies)]
|
|
//~^ WARNING extern crate `bar` is unused in
|
|
|
|
fn main() {}
|