rust/tests/ui/feature-gates/feature-gate-inline_const.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
429 B
Plaintext
Raw Normal View History

2020-10-06 15:53:12 -05:00
error[E0658]: inline-const is experimental
2020-09-21 14:10:31 -05:00
--> $DIR/feature-gate-inline_const.rs:2:13
|
LL | let _ = const {
2020-10-06 15:53:12 -05:00
| ^^^^^
|
= note: see issue #76001 <https://github.com/rust-lang/rust/issues/76001> for more information
= help: add `#![feature(inline_const)]` to the crate attributes to enable
2020-09-21 14:10:31 -05:00
error: aborting due to previous error
2020-10-06 15:53:12 -05:00
For more information about this error, try `rustc --explain E0658`.