summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/macro-export-inner-module.rs
blob: 1f23e90b65cd52671ba53cc75d67ea194d0f5865 (plain)
1
2
3
4
5
6
7
8
9
// run-pass
//aux-build:macro_export_inner_module.rs

#[macro_use] #[no_link]
extern crate macro_export_inner_module;

pub fn main() {
    assert_eq!(1, foo!());
}