]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/issues/issue-68629.stderr
Rollup merge of #106829 - compiler-errors:more-alias-combine, r=spastorino
[rust.git] / tests / ui / parser / issues / issue-68629.stderr
1 error: unknown start of token: \u{1c}
2   --> $DIR/issue-68629.rs:8:1
3    |
4 LL | \1c\1fts\0![{i
5    | ^
6
7 error: unknown start of token: \u{1f}
8   --> $DIR/issue-68629.rs:8:2
9    |
10 LL | \1c\1fts\0![{i
11    | ^
12
13 error: unknown start of token: \u{0}
14   --> $DIR/issue-68629.rs:8:5
15    |
16 LL | \1c\1fts\0![{i
17    |   ^
18    |
19    = help: source files must contain UTF-8 encoded text, unexpected null bytes might occur when a different encoding is used
20
21 error: unknown start of token: \u{0}
22   --> $DIR/issue-68629.rs:9:1
23    |
24 LL | \0\0  fn rݻoa>rݻm
25    | ^
26    |
27    = help: source files must contain UTF-8 encoded text, unexpected null bytes might occur when a different encoding is used
28    = note: character appears once more
29
30 error: this file contains an unclosed delimiter
31   --> $DIR/issue-68629.rs:9:16
32    |
33 LL | \1c\1fts\0![{i
34    |    -- unclosed delimiter
35    |    |
36    |    unclosed delimiter
37 LL | \0\0  fn rݻoa>rݻm
38    |              ^
39
40 error: this file contains an unclosed delimiter
41   --> $DIR/issue-68629.rs:9:16
42    |
43 LL | \1c\1fts\0![{i
44    |    -- unclosed delimiter
45    |    |
46    |    unclosed delimiter
47 LL | \0\0  fn rݻoa>rݻm
48    |              ^
49
50 error: macros that expand to items must be delimited with braces or followed by a semicolon
51   --> $DIR/issue-68629.rs:8:7
52    |
53 LL |   \1c\1fts\0![{i
54    |  ____^
55 LL | | \0\0  fn rݻoa>rݻm
56    | |_____________^
57    |
58 help: change the delimiters to curly braces
59    |
60 LL | \1c\1fts\0! { /* items */ }
61    |     ~~~~~~~~~~~~~~~
62 help: add a semicolon
63    |
64 LL | \0\0  fn rݻoa>rݻm;
65    |              +
66
67 error: cannot find macro `ts` in this scope
68   --> $DIR/issue-68629.rs:8:3
69    |
70 LL | \1c\1fts\0![{i
71    | ^^
72
73 error: aborting due to 8 previous errors
74