2017-12-10 13:47:55 -06:00
|
|
|
error[E0370]: enum discriminant overflowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/discrim-overflow.rs:15:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | OhNo, //~ ERROR enum discriminant overflowed [E0370]
|
2018-03-05 03:21:11 -06:00
|
|
|
| ^^^^ overflowed on value after 127
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-03-05 03:21:11 -06:00
|
|
|
= note: explicitly set `OhNo = -128` if that is desired outcome
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error[E0370]: enum discriminant overflowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/discrim-overflow.rs:26:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | OhNo, //~ ERROR enum discriminant overflowed [E0370]
|
2018-03-05 03:21:11 -06:00
|
|
|
| ^^^^ overflowed on value after 255
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-03-05 03:21:11 -06:00
|
|
|
= note: explicitly set `OhNo = 0` if that is desired outcome
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error[E0370]: enum discriminant overflowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/discrim-overflow.rs:37:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | OhNo, //~ ERROR enum discriminant overflowed [E0370]
|
2018-03-05 03:21:11 -06:00
|
|
|
| ^^^^ overflowed on value after 32767
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-03-05 03:21:11 -06:00
|
|
|
= note: explicitly set `OhNo = -32768` if that is desired outcome
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error[E0370]: enum discriminant overflowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/discrim-overflow.rs:48:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | OhNo, //~ ERROR enum discriminant overflowed [E0370]
|
2018-03-05 03:21:11 -06:00
|
|
|
| ^^^^ overflowed on value after 65535
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-03-05 03:21:11 -06:00
|
|
|
= note: explicitly set `OhNo = 0` if that is desired outcome
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error[E0370]: enum discriminant overflowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/discrim-overflow.rs:60:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | OhNo, //~ ERROR enum discriminant overflowed [E0370]
|
2018-03-05 03:21:11 -06:00
|
|
|
| ^^^^ overflowed on value after 2147483647
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-03-05 03:21:11 -06:00
|
|
|
= note: explicitly set `OhNo = -2147483648` if that is desired outcome
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error[E0370]: enum discriminant overflowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/discrim-overflow.rs:72:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | OhNo, //~ ERROR enum discriminant overflowed [E0370]
|
2018-03-05 03:21:11 -06:00
|
|
|
| ^^^^ overflowed on value after 4294967295
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-03-05 03:21:11 -06:00
|
|
|
= note: explicitly set `OhNo = 0` if that is desired outcome
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error[E0370]: enum discriminant overflowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/discrim-overflow.rs:84:9
|
2017-12-10 14:29:24 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | OhNo, //~ ERROR enum discriminant overflowed [E0370]
|
2018-03-05 03:21:11 -06:00
|
|
|
| ^^^^ overflowed on value after 9223372036854775807
|
2017-12-10 14:29:24 -06:00
|
|
|
|
|
2018-03-05 03:21:11 -06:00
|
|
|
= note: explicitly set `OhNo = -9223372036854775808` if that is desired outcome
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error[E0370]: enum discriminant overflowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/discrim-overflow.rs:96:9
|
2018-02-22 18:42:32 -06:00
|
|
|
|
|
|
|
|
LL | OhNo, //~ ERROR enum discriminant overflowed [E0370]
|
2018-03-05 03:21:11 -06:00
|
|
|
| ^^^^ overflowed on value after 18446744073709551615
|
2018-02-22 18:42:32 -06:00
|
|
|
|
|
2018-03-05 03:21:11 -06:00
|
|
|
= note: explicitly set `OhNo = 0` if that is desired outcome
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0370`.
|