mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 04:27:38 +00:00
12 lines
160 B
Rust
12 lines
160 B
Rust
![]() |
// Duplicate non-builtin attributes can be used on unnamed fields.
|
||
|
|
||
|
// check-pass
|
||
|
|
||
|
struct S (
|
||
|
#[rustfmt::skip]
|
||
|
#[rustfmt::skip]
|
||
|
u8
|
||
|
);
|
||
|
|
||
|
fn main() {}
|