]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-type-overflow2.stderr
Rollup merge of #69362 - CAD97:alloc_layout_extras, r=Amanieu
[rust.git] / src / test / ui / lint / lint-type-overflow2.stderr
1 error: literal out of range for `i8`
2   --> $DIR/lint-type-overflow2.rs:7:20
3    |
4 LL |     let x2: i8 = --128;
5    |                    ^^^
6    |
7 note: the lint level is defined here
8   --> $DIR/lint-type-overflow2.rs:3:9
9    |
10 LL | #![deny(overflowing_literals)]
11    |         ^^^^^^^^^^^^^^^^^^^^
12    = note: the literal `128` does not fit into the type `i8` whose range is `-128..=127`
13
14 error: literal out of range for `f32`
15   --> $DIR/lint-type-overflow2.rs:9:14
16    |
17 LL |     let x = -3.40282357e+38_f32;
18    |              ^^^^^^^^^^^^^^^^^^
19    |
20    = note: the literal `3.40282357e+38_f32` does not fit into the type `f32` and will be converted to `std::f32::INFINITY`
21
22 error: literal out of range for `f32`
23   --> $DIR/lint-type-overflow2.rs:10:14
24    |
25 LL |     let x =  3.40282357e+38_f32;
26    |              ^^^^^^^^^^^^^^^^^^
27    |
28    = note: the literal `3.40282357e+38_f32` does not fit into the type `f32` and will be converted to `std::f32::INFINITY`
29
30 error: literal out of range for `f64`
31   --> $DIR/lint-type-overflow2.rs:11:14
32    |
33 LL |     let x = -1.7976931348623159e+308_f64;
34    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^
35    |
36    = note: the literal `1.7976931348623159e+308_f64` does not fit into the type `f64` and will be converted to `std::f64::INFINITY`
37
38 error: literal out of range for `f64`
39   --> $DIR/lint-type-overflow2.rs:12:14
40    |
41 LL |     let x =  1.7976931348623159e+308_f64;
42    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^
43    |
44    = note: the literal `1.7976931348623159e+308_f64` does not fit into the type `f64` and will be converted to `std::f64::INFINITY`
45
46 error: aborting due to 5 previous errors
47