rust/tests/rustdoc/ice-34423.rs

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

13 lines
159 B
Rust
Raw Normal View History

2023-11-20 11:50:25 -07:00
// https://github.com/rust-lang/rust/issues/34423
pub struct Foo;
pub trait Bar {
#[doc(hidden)]
fn bar() {}
}
impl Bar for Foo {
fn bar() {}
}