Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
macros
/
macro-use-bad-args-2.rs
blob: c5f8f62c186864a0720b4142fbb28f2160f69d15 [
file
] [
log
] [
blame
] [
edit
]
#![
no_std
]
#[
macro_use
(
foo
=
"bar"
)]
//~ ERROR bad macro import
extern
crate std
;
fn
main
()
{}