mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
14 lines
257 B
Rust
14 lines
257 B
Rust
// Regression test for <https://github.com/rust-lang/rust/pull/113167>
|
|
|
|
//@ check-pass
|
|
#![deny(rustdoc::redundant_explicit_links)]
|
|
|
|
mod m {
|
|
pub enum ValueEnum {}
|
|
}
|
|
mod m2 {
|
|
/// [`ValueEnum`]
|
|
pub use crate::m::ValueEnum;
|
|
}
|
|
pub use m2::ValueEnum;
|