mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-08 13:18:32 +00:00
11 lines
194 B
Rust
11 lines
194 B
Rust
![]() |
// Check that private use statements can be used by
|
||
|
|
||
|
//@ run-pass
|
||
|
//@ aux-build:private-use-macro.rs
|
||
|
|
||
|
extern crate private_use_macro;
|
||
|
|
||
|
fn main() {
|
||
|
assert_eq!(private_use_macro::m!(), 57);
|
||
|
}
|