You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make missing_fragment_specifier an unconditional error
This was attempted in [1] then reverted in [2] because of fallout.
Recently, this was made an edition-dependent error in [3].
Make missing fragment specifiers an unconditional error again.
[1]: rust-lang#75516
[2]: rust-lang#80210
[3]: rust-lang#128006
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
8
-
= note: for more information, see issue #40107 <https://github.com/rust-lang/rust/issues/40107>
9
-
= note: `#[deny(missing_fragment_specifier)]` on by default
7
+
= note: fragment specifiers must be specified in the 2024 edition
8
+
= help: valid fragment specifiers are `ident`, `block`, `stmt`, `expr`, `pat`, `ty`, `lifetime`, `literal`, `path`, `meta`, `tt`, `item` and `vis`, along with `expr_2021` and `pat_param` for edition compatibility
Copy file name to clipboardexpand all lines: tests/ui/macros/macro-match-nonterminal.stderr
+12-27
Original file line number
Diff line number
Diff line change
@@ -3,47 +3,32 @@ error: missing fragment specifier
3
3
|
4
4
LL | ($a, $b) => {
5
5
| ^^
6
-
7
-
error: missing fragment specifier
8
-
--> $DIR/macro-match-nonterminal.rs:2:6
9
6
|
10
-
LL | ($a, $b) => {
11
-
| ^^
7
+
= note: fragment specifiers must be specified in the 2024 edition
8
+
= help: valid fragment specifiers are `ident`, `block`, `stmt`, `expr`, `pat`, `ty`, `lifetime`, `literal`, `path`, `meta`, `tt`, `item` and `vis`, along with `expr_2021` and `pat_param` for edition compatibility
9
+
help: try adding a specifier here
12
10
|
13
-
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
14
-
= note: for more information, see issue #40107 <https://github.com/rust-lang/rust/issues/40107>
15
-
= note: `#[deny(missing_fragment_specifier)]` on by default
11
+
LL | ($a:spec, $b) => {
12
+
| +++++
16
13
17
14
error: missing fragment specifier
18
15
--> $DIR/macro-match-nonterminal.rs:2:10
19
16
|
20
17
LL | ($a, $b) => {
21
18
| ^^
22
19
|
23
-
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
24
-
= note: for more information, see issue #40107 <https://github.com/rust-lang/rust/issues/40107>
25
-
26
-
error: aborting due to 3 previous errors
20
+
= note: fragment specifiers must be specified in the 2024 edition
21
+
= help: valid fragment specifiers are `ident`, `block`, `stmt`, `expr`, `pat`, `ty`, `lifetime`, `literal`, `path`, `meta`, `tt`, `item` and `vis`, along with `expr_2021` and `pat_param` for edition compatibility
0 commit comments