]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-doc_notable_trait.rs
Auto merge of #103600 - compiler-errors:early-binder-nits, r=spastorino
[rust.git] / src / test / ui / feature-gates / feature-gate-doc_notable_trait.rs
1 #[doc(notable_trait)] //~ ERROR: `#[doc(notable_trait)]` is experimental
2 trait SomeTrait {}
3
4 fn main() {}