rust/src/test/ui/rfc-2632-const-trait-impl/hir-const-check.stderr

13 lines
420 B
Plaintext
Raw Normal View History

2020-05-21 14:49:38 -05:00
error[E0658]: `loop` is not allowed in a `const fn`
2020-03-02 12:53:58 -06:00
--> $DIR/hir-const-check.rs:12:9
|
2020-05-21 14:49:38 -05:00
LL | loop {}
| ^^^^^^^
2020-03-02 12:53:58 -06:00
|
2020-05-21 14:49:38 -05:00
= note: see issue #52000 <https://github.com/rust-lang/rust/issues/52000> for more information
= help: add `#![feature(const_loop)]` to the crate attributes to enable
2020-03-02 12:53:58 -06:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0658`.