mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
16 lines
210 B
Rust
16 lines
210 B
Rust
// 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");
|
|
}
|