rust/tests/rustdoc/inline_local/enum-variant-reexport-46766.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
183 B
Rust
Raw Normal View History

2023-11-20 12:50:25 -06:00
// https://github.com/rust-lang/rust/issues/46766
#![crate_name = "foo"]
pub enum Enum{Variant}
pub use self::Enum::Variant;
// @!has foo/index.html '//a/@href' './Enum/index.html'