mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-03 05:23:40 +00:00
11 lines
198 B
Rust
11 lines
198 B
Rust
// run-pass
|
|
// aux-build:macro_crate_nonterminal.rs
|
|
|
|
#[macro_use]
|
|
extern crate macro_crate_nonterminal as new_name;
|
|
|
|
pub fn main() {
|
|
new_name::check_local();
|
|
assert_eq!(increment!(5), 6);
|
|
}
|