Skip to content

Commit

Permalink
--bless you.
Browse files Browse the repository at this point in the history
  • Loading branch information
Centril committed Jun 24, 2019
1 parent 5eaedda commit a60bbb0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/test/ui/lint/lint-type-overflow2.stderr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
error: literal out of range for `i8`
--> $DIR/lint-type-overflow2.rs:8:20
--> $DIR/lint-type-overflow2.rs:7:20
|
LL | let x2: i8 = --128;
| ^^^
Expand All @@ -11,25 +11,25 @@ LL | #![deny(overflowing_literals)]
| ^^^^^^^^^^^^^^^^^^^^

error: literal out of range for `f32`
--> $DIR/lint-type-overflow2.rs:10:14
--> $DIR/lint-type-overflow2.rs:9:14
|
LL | let x = -3.40282357e+38_f32;
| ^^^^^^^^^^^^^^^^^^

error: literal out of range for `f32`
--> $DIR/lint-type-overflow2.rs:11:14
--> $DIR/lint-type-overflow2.rs:10:14
|
LL | let x = 3.40282357e+38_f32;
| ^^^^^^^^^^^^^^^^^^

error: literal out of range for `f64`
--> $DIR/lint-type-overflow2.rs:12:14
--> $DIR/lint-type-overflow2.rs:11:14
|
LL | let x = -1.7976931348623159e+308_f64;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: literal out of range for `f64`
--> $DIR/lint-type-overflow2.rs:13:14
--> $DIR/lint-type-overflow2.rs:12:14
|
LL | let x = 1.7976931348623159e+308_f64;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
Expand Down

0 comments on commit a60bbb0

Please sign in to comment.