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