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

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

11 lines
196 B
Rust
Raw Normal View History

// compile-flags: --crate-type lib --edition 2018
2023-03-21 23:44:06 +08:00
#![feature(rustc_attrs)]
#![feature(no_core)]
#![no_core]
2023-03-21 23:44:06 +08:00
#[rustc_doc_primitive = "usize"]
/// This is the built-in type `usize`.
mod usize {
}