Skip to content

Commit 9a63434

Browse files
committed
Renamed test and added test for same crate
1 parent 0aaefff commit 9a63434

3 files changed

+39
-3
lines changed

src/test/rustdoc/cross-crate-hidden.rs src/test/rustdoc/cross-crate-hidden-impl-parameter.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// Issue #86448: test for cross-crate `doc(hidden)`
22
#![crate_name = "foo"]
33

4-
// aux-build:cross-crate-hidden.rs
5-
extern crate cross_crate_hidden;
4+
// aux-build:cross-crate-hidden-impl-parameter.rs
5+
extern crate cross_crate_hidden_impl_parameter;
66

7-
pub use ::cross_crate_hidden::{HiddenType, HiddenTrait}; // OK, not re-exported
7+
pub use ::cross_crate_hidden_impl_parameter::{HiddenType, HiddenTrait}; // OK, not re-exported
88

99
pub enum MyLibType {}
1010

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
// test for `doc(hidden)` with impl parameters in the same crate.
2+
#![crate_name = "foo"]
3+
4+
#[doc(hidden)]
5+
pub enum HiddenType {}
6+
7+
#[doc(hidden)]
8+
pub trait HiddenTrait {}
9+
10+
pub enum MyLibType {}
11+
12+
// @!has foo/enum.MyLibType.html '//*[@id="impl-From%3CHiddenType%3E"]' 'impl From<HiddenType> for MyLibType'
13+
impl From<HiddenType> for MyLibType {
14+
fn from(it: HiddenType) -> MyLibType {
15+
match it {}
16+
}
17+
}
18+
19+
pub struct T<T>(T);
20+
21+
// @!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'
22+
impl From<T<T<T<T<HiddenType>>>>> for MyLibType {
23+
fn from(it: T<T<T<T<HiddenType>>>>) -> MyLibType {
24+
todo!()
25+
}
26+
}
27+
28+
// @!has foo/enum.MyLibType.html '//*[@id="impl-HiddenTrait"]' 'impl HiddenTrait for MyLibType'
29+
impl HiddenTrait for MyLibType {}
30+
31+
// @!has foo/struct.T.html '//*[@id="impl-From%3CMyLibType%3E"]' 'impl From<MyLibType> for T<T<T<T<HiddenType>>>>'
32+
impl From<MyLibType> for T<T<T<T<HiddenType>>>> {
33+
fn from(it: MyLibType) -> T<T<T<T<HiddenType>>>> {
34+
match it {}
35+
}
36+
}

0 commit comments

Comments
 (0)