rust/tests/ui/did_you_mean/auxiliary/doc-hidden-fields.rs

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

7 lines
93 B
Rust
Raw Normal View History

2023-10-04 19:10:35 +02:00
#[derive(Default)]
pub struct B {
#[doc(hidden)]
pub hello: i32,
pub bye: i32,
}