mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
11 lines
192 B
Rust
11 lines
192 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);
|
|
}
|