Update stderr file

This commit is contained in:
Oliver Scherer 2018-11-16 09:04:35 +01:00
parent c8a9300d8e
commit 9b8791179f

View File

@ -1,7 +1,7 @@
error[E0658]: naming constants with `_` is unstable (see issue #54912)
--> $DIR/underscore_const_names_feature_gate.rs:11:1
|
LL | const _: () = ();
LL | const _: () = (); //~ ERROR is unstable
| ^^^^^^^^^^^^^^^^^
|
= help: add #![feature(underscore_const_names)] to the crate attributes to enable
@ -9,7 +9,7 @@ LL | const _: () = ();
error[E0658]: naming constants with `_` is unstable (see issue #54912)
--> $DIR/underscore_const_names_feature_gate.rs:12:1
|
LL | static _: () = ();
LL | static _: () = (); //~ ERROR is unstable
| ^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(underscore_const_names)] to the crate attributes to enable