2017-12-10 19:47:55 +00:00
|
|
|
error[E0370]: enum discriminant overflowed
|
2023-05-29 15:05:24 +00:00
|
|
|
--> $DIR/discriminant-overflow.rs:11:9
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | OhNo,
|
2018-03-05 09:21:11 +00:00
|
|
|
| ^^^^ overflowed on value after 127
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-03-05 09:21:11 +00:00
|
|
|
= note: explicitly set `OhNo = -128` if that is desired outcome
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error[E0370]: enum discriminant overflowed
|
2023-05-29 15:05:24 +00:00
|
|
|
--> $DIR/discriminant-overflow.rs:22:9
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | OhNo,
|
2018-03-05 09:21:11 +00:00
|
|
|
| ^^^^ overflowed on value after 255
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-03-05 09:21:11 +00:00
|
|
|
= note: explicitly set `OhNo = 0` if that is desired outcome
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error[E0370]: enum discriminant overflowed
|
2023-05-29 15:05:24 +00:00
|
|
|
--> $DIR/discriminant-overflow.rs:33:9
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | OhNo,
|
2018-03-05 09:21:11 +00:00
|
|
|
| ^^^^ overflowed on value after 32767
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-03-05 09:21:11 +00:00
|
|
|
= note: explicitly set `OhNo = -32768` if that is desired outcome
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error[E0370]: enum discriminant overflowed
|
2023-05-29 15:05:24 +00:00
|
|
|
--> $DIR/discriminant-overflow.rs:44:9
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | OhNo,
|
2018-03-05 09:21:11 +00:00
|
|
|
| ^^^^ overflowed on value after 65535
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-03-05 09:21:11 +00:00
|
|
|
= note: explicitly set `OhNo = 0` if that is desired outcome
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error[E0370]: enum discriminant overflowed
|
2023-05-29 15:05:24 +00:00
|
|
|
--> $DIR/discriminant-overflow.rs:56:9
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | OhNo,
|
2018-03-05 09:21:11 +00:00
|
|
|
| ^^^^ overflowed on value after 2147483647
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-03-05 09:21:11 +00:00
|
|
|
= note: explicitly set `OhNo = -2147483648` if that is desired outcome
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error[E0370]: enum discriminant overflowed
|
2023-05-29 15:05:24 +00:00
|
|
|
--> $DIR/discriminant-overflow.rs:68:9
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | OhNo,
|
2018-03-05 09:21:11 +00:00
|
|
|
| ^^^^ overflowed on value after 4294967295
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-03-05 09:21:11 +00:00
|
|
|
= note: explicitly set `OhNo = 0` if that is desired outcome
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error[E0370]: enum discriminant overflowed
|
2023-05-29 15:05:24 +00:00
|
|
|
--> $DIR/discriminant-overflow.rs:80:9
|
2017-12-10 20:29:24 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | OhNo,
|
2018-03-05 09:21:11 +00:00
|
|
|
| ^^^^ overflowed on value after 9223372036854775807
|
2017-12-10 20:29:24 +00:00
|
|
|
|
|
2018-03-05 09:21:11 +00:00
|
|
|
= note: explicitly set `OhNo = -9223372036854775808` if that is desired outcome
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error[E0370]: enum discriminant overflowed
|
2023-05-29 15:05:24 +00:00
|
|
|
--> $DIR/discriminant-overflow.rs:92:9
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | OhNo,
|
2018-03-05 09:21:11 +00:00
|
|
|
| ^^^^ overflowed on value after 18446744073709551615
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
2018-03-05 09:21:11 +00:00
|
|
|
= note: explicitly set `OhNo = 0` if that is desired outcome
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0370`.
|