rust/src/test/rustdoc/intra-doc-link-enum-struct-field.rs
2019-11-27 13:13:16 +01:00

14 lines
203 B
Rust

#![crate_name = "foo"]
pub enum Foo {
X {
y: u8,
}
}
/// Hello
///
/// I want [Foo::X::y].
pub fn foo() {}
// @has foo/fn.foo.html '//a/@href' '../foo/enum.Foo.html#variant.X.field.y'