about summary refs log tree commit diff
path: root/tests/rustdoc/intra-doc/issue-82209.rs
blob: 46d028e535c2ff88d500eed1f90b903cfe550fdf (plain)
1
2
3
4
5
6
7
8
9
10
11
#![crate_name = "foo"]
#![deny(rustdoc::broken_intra_doc_links)]
pub enum Foo {
    Bar {
        abc: i32,
        /// [Self::Bar::abc]
        xyz: i32,
    },
}

//@ has foo/enum.Foo.html '//a/@href' 'enum.Foo.html#variant.Bar.field.abc'