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