@@ -29,43 +29,43 @@ LL | { builtin # offset_of((u8, u8), 1 .) };
2929 | ^
3030
3131error: unexpected token: `)`
32- --> $DIR/offset-of-tuple.rs:46 :45
32+ --> $DIR/offset-of-tuple.rs:47 :45
3333 |
3434LL | { builtin # offset_of(ComplexTup, 0.0.1.) };
3535 | ^
3636
3737error: unexpected token: `)`
38- --> $DIR/offset-of-tuple.rs:47 :46
38+ --> $DIR/offset-of-tuple.rs:48 :46
3939 |
4040LL | { builtin # offset_of(ComplexTup, 0 .0.1.) };
4141 | ^
4242
4343error: unexpected token: `)`
44- --> $DIR/offset-of-tuple.rs:48 :47
44+ --> $DIR/offset-of-tuple.rs:49 :47
4545 |
4646LL | { builtin # offset_of(ComplexTup, 0 . 0.1.) };
4747 | ^
4848
4949error: unexpected token: `)`
50- --> $DIR/offset-of-tuple.rs:49 :46
50+ --> $DIR/offset-of-tuple.rs:50 :46
5151 |
5252LL | { builtin # offset_of(ComplexTup, 0. 0.1.) };
5353 | ^
5454
5555error: unexpected token: `)`
56- --> $DIR/offset-of-tuple.rs:50 :46
56+ --> $DIR/offset-of-tuple.rs:51 :46
5757 |
5858LL | { builtin # offset_of(ComplexTup, 0.0 .1.) };
5959 | ^
6060
6161error: unexpected token: `)`
62- --> $DIR/offset-of-tuple.rs:51 :47
62+ --> $DIR/offset-of-tuple.rs:52 :47
6363 |
6464LL | { builtin # offset_of(ComplexTup, 0.0 . 1.) };
6565 | ^
6666
6767error: unexpected token: `)`
68- --> $DIR/offset-of-tuple.rs:52 :46
68+ --> $DIR/offset-of-tuple.rs:53 :46
6969 |
7070LL | { builtin # offset_of(ComplexTup, 0.0. 1.) };
7171 | ^
@@ -104,43 +104,43 @@ LL | offset_of!((u8, u8), 1 .);
104104 | ^
105105
106106error: unexpected token: `)`
107- --> $DIR/offset-of-tuple.rs:35 :34
107+ --> $DIR/offset-of-tuple.rs:36 :34
108108 |
109109LL | offset_of!(ComplexTup, 0.0.1.);
110110 | ^
111111
112112error: unexpected token: `)`
113- --> $DIR/offset-of-tuple.rs:36 :35
113+ --> $DIR/offset-of-tuple.rs:37 :35
114114 |
115115LL | offset_of!(ComplexTup, 0 .0.1.);
116116 | ^
117117
118118error: unexpected token: `)`
119- --> $DIR/offset-of-tuple.rs:37 :36
119+ --> $DIR/offset-of-tuple.rs:38 :36
120120 |
121121LL | offset_of!(ComplexTup, 0 . 0.1.);
122122 | ^
123123
124124error: unexpected token: `)`
125- --> $DIR/offset-of-tuple.rs:38 :35
125+ --> $DIR/offset-of-tuple.rs:39 :35
126126 |
127127LL | offset_of!(ComplexTup, 0. 0.1.);
128128 | ^
129129
130130error: unexpected token: `)`
131- --> $DIR/offset-of-tuple.rs:39 :35
131+ --> $DIR/offset-of-tuple.rs:40 :35
132132 |
133133LL | offset_of!(ComplexTup, 0.0 .1.);
134134 | ^
135135
136136error: unexpected token: `)`
137- --> $DIR/offset-of-tuple.rs:40 :36
137+ --> $DIR/offset-of-tuple.rs:41 :36
138138 |
139139LL | offset_of!(ComplexTup, 0.0 . 1.);
140140 | ^
141141
142142error: unexpected token: `)`
143- --> $DIR/offset-of-tuple.rs:41 :35
143+ --> $DIR/offset-of-tuple.rs:42 :35
144144 |
145145LL | offset_of!(ComplexTup, 0.0. 1.);
146146 | ^
@@ -196,22 +196,21 @@ LL | builtin # offset_of((u8, u8), 1_u8);
196196error[E0609]: no field `2` on type `(u8, u16)`
197197 --> $DIR/offset-of-tuple.rs:30:47
198198 |
199- LL | offset_of!(((u8, u16), (u32, u16, u8)), 0.2);
200- | _____------------------------------------------^-
201- | | |
202- | | in this macro invocation
203- LL | | offset_of!(((u8, u16), (u32, u16, u8)), 1.2);
204- LL | | offset_of!(((u8, u16), (u32, u16, u8)), 1.2.0);
205- ... |
206- |
207- = note: this error originates in the macro `offset_of` (in Nightly builds, run with -Z macro-backtrace for more info)
199+ LL | offset_of!(((u8, u16), (u32, u16, u8)), 0.2);
200+ | ^
208201
209202error[E0609]: no field `0` on type `u8`
210203 --> $DIR/offset-of-tuple.rs:32:49
211204 |
212205LL | offset_of!(((u8, u16), (u32, u16, u8)), 1.2.0);
213206 | ^
214207
215- error: aborting due to 33 previous errors
208+ error[E0609]: no field `1e2` on type `(u8, u16)`
209+ --> $DIR/offset-of-tuple.rs:33:47
210+ |
211+ LL | offset_of!(((u8, u16), (u32, u16, u8)), 0.1e2);
212+ | ^^^
213+
214+ error: aborting due to 34 previous errors
216215
217216For more information about this error, try `rustc --explain E0609`.
0 commit comments