Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
lint
/
unused
/
concat-in-crate-name-issue-137687.rs
blob: c507b6590c276e737bfd990fa45bb0f016fc5be9 [
file
] [
log
] [
blame
]
#![
deny
(
unused
)]
#[
crate_name
=
concat
!()]
//~^ ERROR crate-level attribute should be an inner attribute
macro_rules
!
a
{
//~^ ERROR unused macro definition
()
=>
{};
}
fn
main
()
{}