summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/macro-crate-nonterminal-renamed.rs
blob: 87bd397f06523f31ddc045169537a94f53f3f428 (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);
}