summaryrefslogtreecommitdiffstats
path: root/tests/ui/rustdoc/feature-gate-doc_primitive.rs
blob: 18e99e72f8b622e106336943a408b2e84b19f2f2 (plain)
1
2
3
4
5
6
7
8
// check-pass
#[doc(primitive = "usize")]
//~^ WARNING `doc(primitive)` should never have been stable
//~| WARNING hard error in a future release
/// Some docs
mod usize {}

fn main() {}