1
Fork 0
rust/src/test/rustdoc/intra-doc/enum-struct-field.rs

15 lines
203 B
Rust
Raw Normal View History

#![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'