]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/issue-62272.stderr
ty: convert `ErrorHandled::Reported` to `ConstKind::Error`.
[rust.git] / src / test / ui / consts / const-eval / issue-62272.stderr
1 error[E0658]: `loop` is not allowed in a `const`
2   --> $DIR/issue-62272.rs:7:17
3    |
4 LL | const FOO: () = loop { break; };
5    |                 ^^^^^^^^^^^^^^^
6    |
7    = note: see issue #52000 <https://github.com/rust-lang/rust/issues/52000> for more information
8    = help: add `#![feature(const_loop)]` to the crate attributes to enable
9
10 error[E0658]: `loop` is not allowed in a `const`
11   --> $DIR/issue-62272.rs:10:20
12    |
13 LL |     [FOO; { let x; loop { x = 5; break; } x }];
14    |                    ^^^^^^^^^^^^^^^^^^^^^^
15    |
16    = note: see issue #52000 <https://github.com/rust-lang/rust/issues/52000> for more information
17    = help: add `#![feature(const_loop)]` to the crate attributes to enable
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0658`.