]> git.lizzy.rs Git - rust.git/blob - tests/ui/feature-gates/feature-gate-rustdoc_internals.rs
Auto merge of #105603 - oli-obk:non_repeatable_queries, r=petrochenkov
[rust.git] / tests / ui / feature-gates / feature-gate-rustdoc_internals.rs
1 #[doc(keyword = "match")] //~ ERROR: `#[doc(keyword)]` is meant for internal use only
2 /// wonderful
3 mod foo {}
4
5 trait Mine {}
6
7 #[doc(fake_variadic)]  //~ ERROR: `#[doc(fake_variadic)]` is meant for internal use only
8 impl<T> Mine for (T,) {}
9
10 fn main() {}