2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2014-01-20 09:22:46 -08:00
|
|
|
//aux-build:macro_export_inner_module.rs
|
|
|
|
|
2014-12-31 20:43:46 -08:00
|
|
|
#[macro_use] #[no_link]
|
2014-02-14 10:10:06 -08:00
|
|
|
extern crate macro_export_inner_module;
|
2014-01-20 09:22:46 -08:00
|
|
|
|
|
|
|
pub fn main() {
|
2015-01-25 22:05:03 +01:00
|
|
|
assert_eq!(1, foo!());
|
2014-01-20 09:22:46 -08:00
|
|
|
}
|