Sign in
rust
/
rust
/
d7e8f9fc7af4aa4cd65140afaebe48dd1e90e708
/
.
/
tests
/
ui
/
macros
/
macro-use-bad-args-2.rs
blob: 86cb09a66756c4d41bc296617b9b0d48750a96fc [
file
]
//@ reference: macro.decl.scope.macro_use.syntax
#![
no_std
]
#[
macro_use
(
foo
=
"bar"
)]
//~ ERROR malformed `macro_use` attribute input
extern
crate std
;
fn
main
()
{}