about summary refs log tree commit diff
path: root/tests/ui/offset-of/offset-of-tuple-field.stderr
blob: 01622c5fa2da6aa02235c0b6f9e2acd166989d41 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
error: suffixes on a tuple index are invalid
  --> $DIR/offset-of-tuple-field.rs:15:35
   |
LL |     builtin # offset_of((u8, u8), 1_u8);
   |                                   ^^^^ invalid suffix `u8`

error: suffixes on a tuple index are invalid
  --> $DIR/offset-of-tuple-field.rs:9:26
   |
LL |     offset_of!((u8, u8), 1_u8);
   |                          ^^^^ invalid suffix `u8`

error[E0609]: no field `_0` on type `(u8, u8)`
  --> $DIR/offset-of-tuple-field.rs:6:26
   |
LL |     offset_of!((u8, u8), _0);
   |                          ^^
   |
help: a field with a similar name exists
   |
LL -     offset_of!((u8, u8), _0);
LL +     offset_of!((u8, u8), 0);
   |

error[E0609]: no field `01` on type `(u8, u8)`
  --> $DIR/offset-of-tuple-field.rs:7:26
   |
LL |     offset_of!((u8, u8), 01);
   |                          ^^
   |
   = note: available fields are: `0`, `1`

error[E0609]: no field `1e2` on type `(u8, u8)`
  --> $DIR/offset-of-tuple-field.rs:8:26
   |
LL |     offset_of!((u8, u8), 1e2);
   |                          ^^^
   |
   = note: available fields are: `0`, `1`

error[E0609]: no field `1_` on type `(u8, u8)`
  --> $DIR/offset-of-tuple-field.rs:9:26
   |
LL |     offset_of!((u8, u8), 1_u8);
   |                          ^^^^
   |
help: a field with a similar name exists
   |
LL -     offset_of!((u8, u8), 1_u8);
LL +     offset_of!((u8, u8), 1);
   |

error[E0609]: no field `1e2` on type `(u8, u8)`
  --> $DIR/offset-of-tuple-field.rs:12:35
   |
LL |     builtin # offset_of((u8, u8), 1e2);
   |                                   ^^^
   |
   = note: available fields are: `0`, `1`

error[E0609]: no field `_0` on type `(u8, u8)`
  --> $DIR/offset-of-tuple-field.rs:13:35
   |
LL |     builtin # offset_of((u8, u8), _0);
   |                                   ^^
   |
help: a field with a similar name exists
   |
LL -     builtin # offset_of((u8, u8), _0);
LL +     builtin # offset_of((u8, u8), 0);
   |

error[E0609]: no field `01` on type `(u8, u8)`
  --> $DIR/offset-of-tuple-field.rs:14:35
   |
LL |     builtin # offset_of((u8, u8), 01);
   |                                   ^^
   |
   = note: available fields are: `0`, `1`

error[E0609]: no field `1_` on type `(u8, u8)`
  --> $DIR/offset-of-tuple-field.rs:15:35
   |
LL |     builtin # offset_of((u8, u8), 1_u8);
   |                                   ^^^^
   |
help: a field with a similar name exists
   |
LL -     builtin # offset_of((u8, u8), 1_u8);
LL +     builtin # offset_of((u8, u8), 1);
   |

error[E0609]: no field `2` on type `(u8, u16)`
  --> $DIR/offset-of-tuple-field.rs:18:47
   |
LL |     offset_of!(((u8, u16), (u32, u16, u8)), 0.2);
   |                                               ^
   |
   = note: available fields are: `0`, `1`

error[E0609]: no field `1e2` on type `(u8, u16)`
  --> $DIR/offset-of-tuple-field.rs:19:47
   |
LL |     offset_of!(((u8, u16), (u32, u16, u8)), 0.1e2);
   |                                               ^^^
   |
   = note: available fields are: `0`, `1`

error[E0609]: no field `0` on type `u8`
  --> $DIR/offset-of-tuple-field.rs:21:49
   |
LL |     offset_of!(((u8, u16), (u32, u16, u8)), 1.2.0);
   |                                                 ^

error: aborting due to 13 previous errors

For more information about this error, try `rustc --explain E0609`.