summary refs log tree commit diff
path: root/src/test/ui/consts/const-err-multi.stderr
blob: 4ac4a8754d396ed521ffb87e1a4b0916817a58ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
error: any use of this value will cause an error
  --> $DIR/const-err-multi.rs:3:19
   |
LL | pub const A: i8 = -std::i8::MIN;
   | ------------------^^^^^^^^^^^^^-
   |                   |
   |                   attempt to negate i8::MIN which would overflow
   |
note: the lint level is defined here
  --> $DIR/const-err-multi.rs:1:9
   |
LL | #![deny(const_err)]
   |         ^^^^^^^^^

error: any use of this value will cause an error
  --> $DIR/const-err-multi.rs:5:19
   |
LL | pub const B: i8 = A;
   | ------------------^-
   |                   |
   |                   referenced constant has errors

error: any use of this value will cause an error
  --> $DIR/const-err-multi.rs:7:19
   |
LL | pub const C: u8 = A as u8;
   | ------------------^^^^^^^-
   |                   |
   |                   referenced constant has errors

error: any use of this value will cause an error
  --> $DIR/const-err-multi.rs:9:19
   |
LL | pub const D: i8 = 50 - A;
   | ------------------^^^^^^-
   |                   |
   |                   referenced constant has errors

error: aborting due to 4 previous errors