summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/numbered_fields.stderr
blob: d52a0cf15a83c5dfeed49b9918c16738bdb566d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
error: used a field initializer for a tuple struct
  --> $DIR/numbered_fields.rs:18:13
   |
LL |       let _ = TupleStruct {
   |  _____________^
LL | |         0: 1u32,
LL | |         1: 42,
LL | |         2: 23u8,
LL | |     };
   | |_____^ help: try: `TupleStruct(1u32, 42, 23u8)`
   |
   = note: `-D clippy::init-numbered-fields` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::init_numbered_fields)]`

error: used a field initializer for a tuple struct
  --> $DIR/numbered_fields.rs:25:13
   |
LL |       let _ = TupleStruct {
   |  _____________^
LL | |         0: 1u32,
LL | |         2: 2u8,
LL | |         1: 3u32,
LL | |     };
   | |_____^ help: try: `TupleStruct(1u32, 3u32, 2u8)`

error: aborting due to 2 previous errors