summary refs log tree commit diff
path: root/src/test/ui/consts/const-eval/pub_const_err.stderr
blob: dd47dca2b2e40e8c3c8e3b8d968e66c30475f2c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
warning: any use of this value will cause an error
  --> $DIR/pub_const_err.rs:6:20
   |
LL | pub const Z: u32 = 0 - 1;
   | -------------------^^^^^-
   |                    |
   |                    attempt to compute `0_u32 - 1_u32`, which would overflow
   |
note: the lint level is defined here
  --> $DIR/pub_const_err.rs:2:9
   |
LL | #![warn(const_err)]
   |         ^^^^^^^^^
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>

warning: 1 warning emitted