mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
10 lines
272 B
Rust
10 lines
272 B
Rust
|
// check-pass
|
||
|
// run-rustfix
|
||
|
|
||
|
#![feature(doc_notable_trait)]
|
||
|
|
||
|
#[doc(spotlight)]
|
||
|
//~^ WARN 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 {}
|