Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
macros
/
macro-use-bad-args-1.rs
blob: ec0b64a10953fb960ed1afc98c22c64ff3f499f3 [
file
] [
log
] [
blame
]
#![
no_std
]
#[
macro_use
(
foo
(
bar
))]
//~ ERROR bad macro import
extern
crate std
;
fn
main
()
{}