mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
68 lines
2.0 KiB
Plaintext
68 lines
2.0 KiB
Plaintext
error[E0370]: enum discriminant overflowed
|
|
--> $DIR/discriminant-overflow.rs:11:9
|
|
|
|
|
LL | OhNo,
|
|
| ^^^^ overflowed on value after 127
|
|
|
|
|
= note: explicitly set `OhNo = -128` if that is desired outcome
|
|
|
|
error[E0370]: enum discriminant overflowed
|
|
--> $DIR/discriminant-overflow.rs:22:9
|
|
|
|
|
LL | OhNo,
|
|
| ^^^^ overflowed on value after 255
|
|
|
|
|
= note: explicitly set `OhNo = 0` if that is desired outcome
|
|
|
|
error[E0370]: enum discriminant overflowed
|
|
--> $DIR/discriminant-overflow.rs:33:9
|
|
|
|
|
LL | OhNo,
|
|
| ^^^^ overflowed on value after 32767
|
|
|
|
|
= note: explicitly set `OhNo = -32768` if that is desired outcome
|
|
|
|
error[E0370]: enum discriminant overflowed
|
|
--> $DIR/discriminant-overflow.rs:44:9
|
|
|
|
|
LL | OhNo,
|
|
| ^^^^ overflowed on value after 65535
|
|
|
|
|
= note: explicitly set `OhNo = 0` if that is desired outcome
|
|
|
|
error[E0370]: enum discriminant overflowed
|
|
--> $DIR/discriminant-overflow.rs:56:9
|
|
|
|
|
LL | OhNo,
|
|
| ^^^^ overflowed on value after 2147483647
|
|
|
|
|
= note: explicitly set `OhNo = -2147483648` if that is desired outcome
|
|
|
|
error[E0370]: enum discriminant overflowed
|
|
--> $DIR/discriminant-overflow.rs:68:9
|
|
|
|
|
LL | OhNo,
|
|
| ^^^^ overflowed on value after 4294967295
|
|
|
|
|
= note: explicitly set `OhNo = 0` if that is desired outcome
|
|
|
|
error[E0370]: enum discriminant overflowed
|
|
--> $DIR/discriminant-overflow.rs:80:9
|
|
|
|
|
LL | OhNo,
|
|
| ^^^^ overflowed on value after 9223372036854775807
|
|
|
|
|
= note: explicitly set `OhNo = -9223372036854775808` if that is desired outcome
|
|
|
|
error[E0370]: enum discriminant overflowed
|
|
--> $DIR/discriminant-overflow.rs:92:9
|
|
|
|
|
LL | OhNo,
|
|
| ^^^^ overflowed on value after 18446744073709551615
|
|
|
|
|
= note: explicitly set `OhNo = 0` if that is desired outcome
|
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0370`.
|