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