2016-08-17 09:20:04 -05:00
|
|
|
// aux-build:extern_macro_crate.rs
|
|
|
|
#[macro_use(myprintln, myprint)]
|
|
|
|
extern crate extern_macro_crate;
|
2016-01-24 15:46:39 -06:00
|
|
|
|
2016-01-21 15:14:09 -06:00
|
|
|
fn main() {
|
2017-11-20 06:13:27 -06:00
|
|
|
myprintln!("{}");
|
2018-07-19 07:15:43 -05:00
|
|
|
//~^ ERROR in format string
|
2016-01-21 15:14:09 -06:00
|
|
|
}
|