rust/tests/ui/attributes/unnamed-field-attributes.rs

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

10 lines
103 B
Rust
Raw Normal View History

//@ check-pass
struct S(
#[rustfmt::skip] u8,
u16,
#[rustfmt::skip] u32,
);
fn main() {}