Sign in
fuchsia
/
third_party
/
rust
/
d210ce7dac4acb7653d647c77d56c10068dda82c
/
.
/
tests
/
ui
/
attributes
/
crate-name-macro-call.rs
blob: 1aae2e506e29bed3143aadab6424198bcb2fc0ba [
file
] [
log
] [
blame
]
// issue: rust-lang/rust#122001
// Ensure we reject macro calls inside `#![crate_name]` as their result wouldn't get honored anyway.
#![
crate_name
=
concat
!(
"my"
,
"crate"
)]
//~ ERROR malformed `crate_name` attribute input
fn
main
()
{}