summaryrefslogtreecommitdiff
path: root/tests/ui/offset-of/offset-of-arg-count.stderr
blob: ebecc982c5174c9700054088eb61d0b9a779ee76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: expected one of `!`, `(`, `+`, `,`, `::`, or `<`, found `<eof>`
  --> $DIR/offset-of-arg-count.rs:6:16
   |
LL |     offset_of!(NotEnoughArguments);
   |                ^^^^^^^^^^^^^^^^^^ expected one of `!`, `(`, `+`, `,`, `::`, or `<`

error: expected 2 arguments
  --> $DIR/offset-of-arg-count.rs:7:5
   |
LL |     offset_of!(NotEnoughArgumentsWithAComma, );
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: expected 2 arguments
  --> $DIR/offset-of-arg-count.rs:8:5
   |
LL |     offset_of!(Container, field, too many arguments);
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 3 previous errors