We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8a9300 commit 9b87911Copy full SHA for 9b87911
src/test/ui/underscore_const_names_feature_gate.stderr
@@ -1,15 +1,15 @@
1
error[E0658]: naming constants with `_` is unstable (see issue #54912)
2
--> $DIR/underscore_const_names_feature_gate.rs:11:1
3
|
4
-LL | const _: () = ();
+LL | const _: () = (); //~ ERROR is unstable
5
| ^^^^^^^^^^^^^^^^^
6
7
= help: add #![feature(underscore_const_names)] to the crate attributes to enable
8
9
10
--> $DIR/underscore_const_names_feature_gate.rs:12:1
11
12
-LL | static _: () = ();
+LL | static _: () = (); //~ ERROR is unstable
13
| ^^^^^^^^^^^^^^^^^^
14
15
0 commit comments