We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d63b24f commit ed9c5daCopy full SHA for ed9c5da
src/test/ui/parser/issue-62524.rs
@@ -0,0 +1,4 @@
1
+// ignore-tidy-trailing-newlines
2
+// error-pattern: aborting due to 3 previous errors
3
+y![
4
+Ϥ,
src/test/ui/parser/issue-62524.stderr
@@ -0,0 +1,34 @@
+error: this file contains an un-closed delimiter
+ --> $DIR/issue-62524.rs:4:3
+ |
+LL | y![
5
+ | - un-closed 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:3:3
11
12
13
+ | ___^
14
+LL | | Ϥ,
15
+ | |__^
16
17
+help: change the delimiters to curly braces
18
19
+LL | y!{
20
+LL | Ϥ}
21
22
+help: add a semicolon
23
24
+LL | Ϥ,;
25
26
27
+error: cannot find macro `y` in this scope
28
+ --> $DIR/issue-62524.rs:3:1
29
30
31
32
33
+error: aborting due to 3 previous errors
34
0 commit comments