]> git.proxmox.com Git - rustc.git/blame - src/test/ui/consts/const-eval/promoted_errors.noopt.stderr
New upstream version 1.54.0+dfsg1
[rustc.git] / src / test / ui / consts / const-eval / promoted_errors.noopt.stderr
CommitLineData
5869c6ff 1warning: any use of this value will cause an error
17df50a5 2 --> $DIR/promoted_errors.rs:15:5
5869c6ff
XL
3 |
4LL | 0 - 1
5 | ^^^^^
6 | |
7 | attempt to compute `0_u32 - 1_u32`, which would overflow
17df50a5
XL
8 | inside `overflow` at $DIR/promoted_errors.rs:15:5
9 | inside `X` at $DIR/promoted_errors.rs:38:29
5869c6ff
XL
10...
11LL | / const X: () = {
12LL | | let _x: &'static u32 = &overflow();
13LL | |
14LL | |
15... |
16LL | | let _x: &'static i32 = &oob();
17LL | | };
18 | |__-
74b04a01
XL
19 |
20note: the lint level is defined here
17df50a5 21 --> $DIR/promoted_errors.rs:11:9
74b04a01
XL
22 |
23LL | #![warn(const_err, arithmetic_overflow, unconditional_panic)]
24 | ^^^^^^^^^
5869c6ff
XL
25 = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
26 = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
27
28warning: any use of this value will cause an error
17df50a5 29 --> $DIR/promoted_errors.rs:38:28
5869c6ff
XL
30 |
31LL | / const X: () = {
32LL | | let _x: &'static u32 = &overflow();
33 | | ^^^^^^^^^^^ referenced constant has errors
34LL | |
35LL | |
36... |
37LL | | let _x: &'static i32 = &oob();
38LL | | };
39 | |__-
40 |
41 = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
42 = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
43
44warning: 2 warnings emitted
ba9703b0 45