mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
15 lines
254 B
Rust
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 }
|
|
}
|