summary refs log tree commit diff
path: root/src/test/ui/consts/const-err-multi.stderr
blob: af62665c056b03d3898757aa42e8c0ab6577c520 (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:1
   |
LL | pub const A: i8 = -std::i8::MIN;
   | ^^^^^^^^^^^^^^^^^^-------------^
   |                   |
   |                   attempt to negate with overflow
   |
note: lint level 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:1
   |
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:1
   |
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:1
   |
LL | pub const D: i8 = 50 - A;
   | ^^^^^^^^^^^^^^^^^^------^
   |                   |
   |                   referenced constant has errors

error: aborting due to 4 previous errors