Rollup merge of #100348 - camelid:test-93205, r=jyn514

Add regression test for #93205

Closes #93205.

This issue was most likely fixed by #93805.
This commit is contained in:
Michael Goulet 2022-08-10 09:28:21 -07:00 committed by GitHub
commit a6116b9564
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,20 @@
// Regression test for #93205
#![crate_name = "foo"]
mod generated {
pub struct MyNewType;
impl MyNewType {
pub const FOO: Self = Self;
}
}
pub use generated::MyNewType;
mod prelude {
impl super::MyNewType {
/// An alias for [`Self::FOO`].
// @has 'foo/struct.MyNewType.html' '//a[@href="struct.MyNewType.html#associatedconstant.FOO"]' 'Self::FOO'
pub const FOO2: Self = Self::FOO;
}
}