Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
macros
/
macro-use-bad-args-2.rs
blob: e328b6285d91e4d188242b6b820f8c57b636276e [
file
] [
log
] [
blame
]
#![
no_std
]
#[
macro_use
(
foo
=
"bar"
)]
//~ ERROR malformed `macro_use` attribute input
extern
crate std
;
fn
main
()
{}