Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
unused-crate-deps
/
ignore-pathless-extern.rs
blob: 9c720de363490af52231f7da55d19d20e443987c [
file
] [
log
] [
blame
]
// 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
()
{}