about summary refs log tree commit diff
path: root/tests/ui/macros/macro-crate-nonterminal-renamed.rs
blob: 53e0b771f4a9146f86ce1703e97920d55b897918 (plain)
1
2
3
4
5
6
7
8
9
10
//@ 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);
}