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