rustc/tests/rustdoc/intra-doc/self-cache.rs
2024-10-21 11:08:01 +02:00

15 lines
254 B
Rust

#![crate_name = "foo"]
//@ has foo/enum.E1.html '//a/@href' 'enum.E1.html#variant.A'
/// [Self::A::b]
pub enum E1 {
A { b: usize }
}
//@ has foo/enum.E2.html '//a/@href' 'enum.E2.html#variant.A'
/// [Self::A::b]
pub enum E2 {
A { b: usize }
}