2020-11-13 14:58:21 +01:00
|
|
|
#![crate_type="lib"]
|
|
|
|
|
2020-11-12 01:05:27 +01:00
|
|
|
pub mod internal {
|
2020-11-12 01:55:28 +01:00
|
|
|
// @has 'raw_ident_eliminate_r_hashtag/internal/struct.mod.html'
|
2021-11-26 15:03:16 -08:00
|
|
|
#[allow(non_camel_case_types)]
|
2020-11-12 01:05:27 +01:00
|
|
|
pub struct r#mod;
|
|
|
|
|
|
|
|
/// See [name], [other name]
|
|
|
|
///
|
|
|
|
/// [name]: mod
|
2020-11-12 01:55:28 +01:00
|
|
|
/// [other name]: crate::internal::mod
|
2021-03-17 11:41:01 -07:00
|
|
|
// @has 'raw_ident_eliminate_r_hashtag/internal/struct.B.html' '//*a[@href="struct.mod.html"]' 'name'
|
|
|
|
// @has 'raw_ident_eliminate_r_hashtag/internal/struct.B.html' '//*a[@href="struct.mod.html"]' 'other name'
|
2020-11-12 01:05:27 +01:00
|
|
|
pub struct B;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// See [name].
|
|
|
|
///
|
|
|
|
/// [name]: internal::mod
|
2021-03-17 11:41:01 -07:00
|
|
|
// @has 'raw_ident_eliminate_r_hashtag/struct.A.html' '//*a[@href="internal/struct.mod.html"]' 'name'
|
2020-11-13 14:58:21 +01:00
|
|
|
pub struct A;
|