mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 03:57:37 +00:00
18 lines
385 B
Rust
18 lines
385 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 primitive_overloading.json
|
||
|
// @has - "$.index[*][?(@.name=='usize')]"
|
||
|
// @has - "$.index[*][?(@.name=='prim')]"
|
||
|
|
||
|
#[doc(primitive = "usize")]
|
||
|
/// This is the built-in type `usize`.
|
||
|
mod prim {
|
||
|
}
|