about summary refs log tree commit diff
path: root/tests/ui/attributes/unnamed-field-attributes-dup.rs
blob: f4d7a77cd6ef5163f5267ffac0c860e3e1ad1f85 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Duplicate non-builtin attributes can be used on unnamed fields.

//@ check-pass

struct S (
    #[rustfmt::skip]
    #[rustfmt::skip]
    u8
);

fn main() {}