Sign in
fuchsia
/
third_party
/
rust
/
2fcea9fb68c8e04f10e5cb15bbfb486de9800afa
/
.
/
tests
/
ui
/
macros
/
macro-use-bad-args-1.rs
blob: bfc19981804d0db821345d87ab8840150bf15a23 [
file
] [
log
] [
blame
]
#![
no_std
]
#[
macro_use
(
foo
(
bar
))]
//~ ERROR malformed `macro_use` attribute input
extern
crate std
;
fn
main
()
{}