mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +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);
|
|
}
|