summaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/execute/torture/decl_macro1.rs
blob: accc8b1db8e5d121e44cf7eff4f518d6896fd3b7 (plain)
1
2
3
4
5
6
7
8
#![feature(decl_macro)]
macro one() {
    1
}

fn main() -> i32 {
    one!() - 1
}