Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
proc-macro
/
issue-89566-suggest-fix-invalid-top-level-macro-attr.rs
blob: edc3ab9736dadaafa4772714c345ee129e2e83be [
file
] [
log
] [
blame
]
//@ run-rustfix
#![
derive
(
Debug
)]
//~ ERROR `derive` attribute cannot be used at crate level
#[
allow
(
dead_code
)]
struct
Test
{}
fn
main
()
{}