forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#127459 - its-the-shrimp:rustdocjson_add_ali…
…as_tests, r=aDotInTheVoid rustdoc-json: add type/trait alias tests Not sure if this tests everything there is to test in them though. Updates rust-lang#81359
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// ignore-tidy-linelength | ||
#![feature(trait_alias)] | ||
|
||
// @set StrLike = "$.index[*][?(@.name=='StrLike')].id" | ||
// @is "$.index[*][?(@.name=='StrLike')].visibility" \"public\" | ||
// @has "$.index[*][?(@.name=='StrLike')].inner.trait_alias" | ||
// @is "$.index[*][?(@.name=='StrLike')].span.filename" $FILE | ||
pub trait StrLike = AsRef<str>; | ||
|
||
// @is "$.index[*][?(@.name=='f')].inner.function.decl.output.impl_trait[0].trait_bound.trait.id" $StrLike | ||
pub fn f() -> impl StrLike { | ||
"heya" | ||
} | ||
|
||
// @!is "$.index[*][?(@.name=='g')].inner.function.decl.output.impl_trait[0].trait_bound.trait.id" $StrLike | ||
pub fn g() -> impl AsRef<str> { | ||
"heya" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// @set IntVec = "$.index[*][?(@.name=='IntVec')].id" | ||
// @is "$.index[*][?(@.name=='IntVec')].visibility" \"public\" | ||
// @has "$.index[*][?(@.name=='IntVec')].inner.type_alias" | ||
// @is "$.index[*][?(@.name=='IntVec')].span.filename" $FILE | ||
pub type IntVec = Vec<u32>; | ||
|
||
// @is "$.index[*][?(@.name=='f')].inner.function.decl.output.resolved_path.id" $IntVec | ||
pub fn f() -> IntVec { | ||
vec![0; 32] | ||
} | ||
|
||
// @!is "$.index[*][?(@.name=='g')].inner.function.decl.output.resolved_path.id" $IntVec | ||
pub fn g() -> Vec<u32> { | ||
vec![0; 32] | ||
} |