]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro-export-inner-module.rs
Rollup merge of #107127 - uweigand:s390x-sanitizer, r=Mark-Simulacrum
[rust.git] / tests / ui / macros / macro-export-inner-module.rs
1 // run-pass
2 //aux-build:macro_export_inner_module.rs
3
4 #[macro_use] #[no_link]
5 extern crate macro_export_inner_module;
6
7 pub fn main() {
8     assert_eq!(1, foo!());
9 }