mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 09:36:04 +00:00
9 lines
170 B
Rust
9 lines
170 B
Rust
// aux-build:extern_macro_crate.rs
|
|
#[macro_use(myprintln, myprint)]
|
|
extern crate extern_macro_crate;
|
|
|
|
fn main() {
|
|
myprintln!("{}");
|
|
//~^ ERROR in format string
|
|
}
|