mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
13 lines
206 B
Rust
13 lines
206 B
Rust
// Pathless --extern references don't count
|
|
|
|
//@ edition:2018
|
|
//@ check-pass
|
|
//@ aux-crate:bar=bar.rs
|
|
//@ compile-flags:--extern proc_macro
|
|
|
|
#![warn(unused_crate_dependencies)]
|
|
|
|
use bar as _;
|
|
|
|
fn main() {}
|