2021-12-30 08:10:43 -06:00
|
|
|
error: used a field initializer for a tuple struct
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/numbered_fields.rs:17:13
|
2021-12-30 08:10:43 -06:00
|
|
|
|
|
|
|
|
LL | let _ = TupleStruct {
|
|
|
|
| _____________^
|
|
|
|
LL | | 0: 1u32,
|
|
|
|
LL | | 1: 42,
|
|
|
|
LL | | 2: 23u8,
|
|
|
|
LL | | };
|
2023-07-17 03:19:29 -05:00
|
|
|
| |_____^ help: try: `TupleStruct(1u32, 42, 23u8)`
|
2021-12-30 08:10:43 -06:00
|
|
|
|
|
|
|
|
= note: `-D clippy::init-numbered-fields` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::init_numbered_fields)]`
|
2021-12-30 08:10:43 -06:00
|
|
|
|
|
|
|
error: used a field initializer for a tuple struct
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/numbered_fields.rs:24:13
|
2021-12-30 08:10:43 -06:00
|
|
|
|
|
|
|
|
LL | let _ = TupleStruct {
|
|
|
|
| _____________^
|
|
|
|
LL | | 0: 1u32,
|
|
|
|
LL | | 2: 2u8,
|
|
|
|
LL | | 1: 3u32,
|
|
|
|
LL | | };
|
2023-07-17 03:19:29 -05:00
|
|
|
| |_____^ help: try: `TupleStruct(1u32, 3u32, 2u8)`
|
2021-12-30 08:10:43 -06:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|