rustdoc-search: build args, return, and generics on one unifier
This enhances generics with the "unboxing" behavior where A<T> matches T. It makes this unboxing transitive over generics.
This commit is contained in:
parent
04f4493722
commit
9946d67579
4 changed files with 178 additions and 138 deletions
5
tests/rustdoc-js/nested-unboxed.rs
Normal file
5
tests/rustdoc-js/nested-unboxed.rs
Normal file
|
@ -0,0 +1,5 @@
|
|||
pub struct Object<T, U>(T, U);
|
||||
|
||||
pub fn something() -> Result<Object<i32, u32>, bool> {
|
||||
loop {}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue