aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/include_empty.rs
blob: 28e940fa0ac7d5b593f8da348c428ee5815701ef (plain)
1
2
3
4
5
6
7
8
#[rustc_builtin_macro]
macro_rules! include {
    () => {};
}

include!("empty.in");

fn main() {}