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