Skip to content

Commit 9b87911

Browse files
committed
Update stderr file
1 parent c8a9300 commit 9b87911

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/ui/underscore_const_names_feature_gate.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
error[E0658]: naming constants with `_` is unstable (see issue #54912)
22
--> $DIR/underscore_const_names_feature_gate.rs:11:1
33
|
4-
LL | const _: () = ();
4+
LL | const _: () = (); //~ ERROR is unstable
55
| ^^^^^^^^^^^^^^^^^
66
|
77
= help: add #![feature(underscore_const_names)] to the crate attributes to enable
88

99
error[E0658]: naming constants with `_` is unstable (see issue #54912)
1010
--> $DIR/underscore_const_names_feature_gate.rs:12:1
1111
|
12-
LL | static _: () = ();
12+
LL | static _: () = (); //~ ERROR is unstable
1313
| ^^^^^^^^^^^^^^^^^^
1414
|
1515
= help: add #![feature(underscore_const_names)] to the crate attributes to enable

0 commit comments

Comments
 (0)