mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
8 lines
167 B
Rust
8 lines
167 B
Rust
//@ run-rustfix
|
|
#![feature(doc_notable_trait)]
|
|
#![deny(invalid_doc_attributes)]
|
|
|
|
#[doc(notable_trait)]
|
|
//~^ ERROR unknown `doc` attribute `spotlight`
|
|
trait MyTrait {}
|