rust/tests/rustdoc-json/primitives/use_primitive.rs

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

21 lines
638 B
Rust
Raw Normal View History

2021-08-28 08:01:56 -05:00
// edition:2018
2021-10-30 10:44:50 -05:00
#![feature(rustdoc_internals)]
2021-08-28 08:01:56 -05:00
#[doc(primitive = "usize")]
mod usize {}
// @set local_crate_id = "$.index[*][?(@.name=='use_primitive')].crate_id"
2021-08-28 08:01:56 -05:00
2022-08-17 05:55:09 -05:00
// @has "$.index[*][?(@.name=='ilog10')]"
// @!is "$.index[*][?(@.name=='ilog10')].crate_id" $local_crate_id
// @has "$.index[*][?(@.name=='checked_add')]"
// @!is "$.index[*][?(@.name=='checked_add')]" $local_crate_id
// @!has "$.index[*][?(@.name=='is_ascii_uppercase')]"
2022-08-17 05:55:09 -05:00
// @is "$.index[*][?(@.kind=='import' && @.inner.name=='my_i32')].inner.id" null
pub use i32 as my_i32;
2022-08-17 05:55:09 -05:00
// @is "$.index[*][?(@.kind=='import' && @.inner.name=='u32')].inner.id" null
pub use u32;