]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-62524.stderr
Rollup merge of #73418 - doctorn:variants-intrinsic, r=kennytm
[rust.git] / src / test / ui / parser / issue-62524.stderr
1 error: this file contains an unclosed delimiter
2   --> $DIR/issue-62524.rs:6:3
3    |
4 LL | y![
5    |   - unclosed delimiter
6 LL | Ϥ,
7    |   ^
8
9 error: macros that expand to items must be delimited with braces or followed by a semicolon
10   --> $DIR/issue-62524.rs:5:3
11    |
12 LL |   y![
13    |  ___^
14 LL | | Ϥ,
15    | |__^
16    |
17 help: change the delimiters to curly braces
18    |
19 LL | y! { /* items */ }
20    |    ^^^^^^^^^^^^^^^
21 help: add a semicolon
22    |
23 LL | Ϥ,;
24    |   ^
25
26 error: cannot find macro `y` in this scope
27   --> $DIR/issue-62524.rs:5:1
28    |
29 LL | y![
30    | ^
31
32 error: aborting due to 3 previous errors
33