-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renamed test and added test for same crate
- Loading branch information
Showing
3 changed files
with
39 additions
and
3 deletions.
There are no files selected for viewing
File renamed without changes.
6 changes: 3 additions & 3 deletions
6
src/test/rustdoc/cross-crate-hidden.rs → ...tdoc/cross-crate-hidden-impl-parameter.rs
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
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,36 @@ | ||
// test for `doc(hidden)` with impl parameters in the same crate. | ||
#![crate_name = "foo"] | ||
|
||
#[doc(hidden)] | ||
pub enum HiddenType {} | ||
|
||
#[doc(hidden)] | ||
pub trait HiddenTrait {} | ||
|
||
pub enum MyLibType {} | ||
|
||
// @!has foo/enum.MyLibType.html '//*[@id="impl-From%3CHiddenType%3E"]' 'impl From<HiddenType> for MyLibType' | ||
impl From<HiddenType> for MyLibType { | ||
fn from(it: HiddenType) -> MyLibType { | ||
match it {} | ||
} | ||
} | ||
|
||
pub struct T<T>(T); | ||
|
||
// @!has foo/enum.MyLibType.html '//*[@id="impl-From%3CT%3CT%3CT%3CT%3CHiddenType%3E%3E%3E%3E%3E"]' 'impl From<T<T<T<T<HiddenType>>>>> for MyLibType' | ||
impl From<T<T<T<T<HiddenType>>>>> for MyLibType { | ||
fn from(it: T<T<T<T<HiddenType>>>>) -> MyLibType { | ||
todo!() | ||
} | ||
} | ||
|
||
// @!has foo/enum.MyLibType.html '//*[@id="impl-HiddenTrait"]' 'impl HiddenTrait for MyLibType' | ||
impl HiddenTrait for MyLibType {} | ||
|
||
// @!has foo/struct.T.html '//*[@id="impl-From%3CMyLibType%3E"]' 'impl From<MyLibType> for T<T<T<T<HiddenType>>>>' | ||
impl From<MyLibType> for T<T<T<T<HiddenType>>>> { | ||
fn from(it: MyLibType) -> T<T<T<T<HiddenType>>>> { | ||
match it {} | ||
} | ||
} |