about summary refs log tree commit diff
path: root/tests/ui/suggestions/issue-94171.stderr
blob: 52306a2465f1a89c57fb4fa6ca0e3614a3f24876 (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
error: unknown start of token: `
  --> $DIR/issue-94171.rs:2:5
   |
LL | (; {`
   |     ^
   |
help: Unicode character '`' (Grave Accent) looks like ''' (Single Quote), but it is not
   |
LL - (; {`
LL + (; {'
   |

error: mismatched closing delimiter: `]`
  --> $DIR/issue-94171.rs:1:5
   |
LL | fn L(]{match
   |     ^^ mismatched closing delimiter
   |     |
   |     unclosed delimiter

error: this file contains an unclosed delimiter
  --> $DIR/issue-94171.rs:5:52
   |
LL | fn L(]{match
   |       - unclosed delimiter
LL | (; {`
   | -  - unclosed delimiter
   | |
   | unclosed delimiter
...
LL |
   |                                                   ^

error: aborting due to 3 previous errors