about summary refs log tree commit diff
path: root/tests/rustdoc-json/primitives/primitive_overloading.rs
blob: 50e23fc06d3eaa9a501ba095f9559bb479fe94d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// compile-flags: --document-private-items

// Regression test for <https://github.com/rust-lang/rust/issues/98006>.

#![feature(rustc_attrs)]

// @has "$.index[*][?(@.name=='usize')]"
// @has "$.index[*][?(@.name=='prim')]"

#[rustc_doc_primitive = "usize"]
/// This is the built-in type `usize`.
mod prim {}