2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
|
|
|
|
//@ aux-build:macro_crate_def_only.rs
|
2013-12-25 11:10:33 -07:00
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2014-12-31 20:43:46 -08:00
|
|
|
#[macro_use] #[no_link]
|
2014-02-14 10:10:06 -08:00
|
|
|
extern crate macro_crate_def_only;
|
2013-12-25 11:10:33 -07:00
|
|
|
|
|
|
|
|
pub fn main() {
|
2015-01-25 22:05:03 +01:00
|
|
|
assert_eq!(5, make_a_5!());
|
2013-12-25 11:10:33 -07:00
|
|
|
}
|