about summary refs log tree commit diff
path: root/tests/ui/parser/issues/issue-90993.stderr
blob: e9ecc59ec4935d5f0b1e15c4e1af00de7bb8b51b (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
error: unexpected token: `...`
  --> $DIR/issue-90993.rs:2:5
   |
LL |     ...=.
   |     ^^^
   |
help: use `..` for an exclusive range
   |
LL -     ...=.
LL +     ..=.
   |
help: or `..=` for an inclusive range
   |
LL -     ...=.
LL +     ..==.
   |

error: unexpected `=` after inclusive range
  --> $DIR/issue-90993.rs:2:5
   |
LL |     ...=.
   |     ^^^^
   |
   = note: inclusive ranges end with a single equals sign (`..=`)
help: use `..=` instead
   |
LL -     ...=.
LL +     ..=.
   |

error: expected one of `-`, `;`, `}`, or path, found `.`
  --> $DIR/issue-90993.rs:2:9
   |
LL |     ...=.
   |         ^ expected one of `-`, `;`, `}`, or path

error: aborting due to 3 previous errors