blob: 1f1dd203a640186dfe3c503c370e5fa313932e7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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 subtract with overflow
|
note: the lint level is defined here
--> $DIR/pub_const_err.rs:2:9
|
LL | #![warn(const_err)]
| ^^^^^^^^^
warning: 1 warning emitted
|