2021-02-26 18:08:05 -06:00
|
|
|
#![crate_name = "foo"]
|
2021-11-26 17:03:16 -06:00
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
2021-02-26 15:09:39 -06:00
|
|
|
pub enum Foo {
|
|
|
|
Bar {
|
|
|
|
abc: i32,
|
|
|
|
/// [Self::Bar::abc]
|
|
|
|
xyz: i32,
|
|
|
|
},
|
|
|
|
}
|
2021-02-26 18:08:05 -06:00
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has foo/enum.Foo.html '//a/@href' 'enum.Foo.html#variant.Bar.field.abc'
|