mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
13 lines
202 B
Rust
13 lines
202 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() {}
|