rust/tests/rustdoc-ui/lints/doc-spotlight.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
277 B
Rust
Raw Normal View History

// run-rustfix
2021-05-20 03:13:26 +00:00
#![deny(warnings)]
#![feature(doc_notable_trait)]
#[doc(spotlight)]
2021-05-20 03:13:26 +00:00
//~^ ERROR unknown `doc` attribute `spotlight`
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
trait MyTrait {}