Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
rustdoc-ui
/
lints
/
doc-spotlight.rs
blob: a0d874bdcb2175621d20f60db47486d53822a3df [
file
]
//@ run-rustfix
#![
feature
(
doc_notable_trait
)]
#![
deny
(
invalid_doc_attributes
)]
#[
doc
(
spotlight
)]
//~^ ERROR unknown `doc` attribute `spotlight`
trait
MyTrait
{}