Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
20
tests/rustdoc-json/primitives/use_primitive.rs
Normal file
20
tests/rustdoc-json/primitives/use_primitive.rs
Normal file
|
@ -0,0 +1,20 @@
|
|||
// edition:2018
|
||||
|
||||
#![feature(rustdoc_internals)]
|
||||
|
||||
#[doc(primitive = "usize")]
|
||||
mod usize {}
|
||||
|
||||
// @set local_crate_id = "$.index[*][?(@.name=='use_primitive')].crate_id"
|
||||
|
||||
// @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')]"
|
||||
|
||||
// @is "$.index[*][?(@.kind=='import' && @.inner.name=='my_i32')].inner.id" null
|
||||
pub use i32 as my_i32;
|
||||
|
||||
// @is "$.index[*][?(@.kind=='import' && @.inner.name=='u32')].inner.id" null
|
||||
pub use u32;
|
Loading…
Add table
Add a link
Reference in a new issue