2018-05-08 06:59:26 -05:00
|
|
|
error[E0658]: let bindings in constant functions are unstable (see issue #48821)
|
2018-03-27 14:16:37 -05:00
|
|
|
--> $DIR/feature-gate-const_let.rs:16:13
|
|
|
|
|
|
2018-05-08 06:59:26 -05:00
|
|
|
LL | let x = 42;
|
2018-03-27 14:16:37 -05:00
|
|
|
| ^^
|
2018-05-08 06:59:26 -05:00
|
|
|
|
|
|
|
|
= help: add #![feature(const_let)] to the crate attributes to enable
|
|
|
|
|
|
|
|
error[E0658]: statements in constant functions are unstable (see issue #48821)
|
|
|
|
--> $DIR/feature-gate-const_let.rs:16:13
|
|
|
|
|
|
|
|
|
LL | let x = 42;
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(const_let)] to the crate attributes to enable
|
2018-03-27 14:16:37 -05:00
|
|
|
|
2018-05-08 06:59:26 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2018-03-27 14:16:37 -05:00
|
|
|
|
2018-05-08 06:59:26 -05:00
|
|
|
For more information about this error, try `rustc --explain E0658`.
|