mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-27 07:42:23 +00:00
17 lines
346 B
Rust
17 lines
346 B
Rust
// compile-flags: --document-private-items
|
|
|
|
// Regression test for <https://github.com/rust-lang/rust/issues/98006>.
|
|
|
|
#![feature(rustdoc_internals)]
|
|
#![feature(no_core)]
|
|
|
|
#![no_core]
|
|
|
|
// @has "$.index[*][?(@.name=='usize')]"
|
|
// @has "$.index[*][?(@.name=='prim')]"
|
|
|
|
#[doc(primitive = "usize")]
|
|
/// This is the built-in type `usize`.
|
|
mod prim {
|
|
}
|