rust/tests/rustdoc/auxiliary/primitive-doc.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
166 B
Rust
Raw Normal View History

// compile-flags: --crate-type lib --edition 2018
#![feature(no_core)]
#![no_core]
#[doc(primitive = "usize")]
/// This is the built-in type `usize`.
mod usize {
}