Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
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
()
{}