Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
unused-crate-deps
/
test-use-ok.rs
blob: ef95d0707933f7373443958b094fd69016fca5b0 [
file
] [
log
] [
blame
] [
edit
]
// Test-only use OK
//@ edition:2018
//@ check-pass
//@ aux-crate:bar=bar.rs
//@ compile-flags:--test
#![
deny
(
unused_crate_dependencies
)]
fn
main
()
{}
#[
test
]
fn
test_bar
()
{
assert_eq
!(
bar
::
BAR
,
"bar"
);
}