mirror of https://github.com/rust-lang/rust
68 lines
2.0 KiB
Plaintext
68 lines
2.0 KiB
Plaintext
error[E0370]: enum discriminant overflowed
|
|
--> $DIR/discriminant-overflow-2.rs:13: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-2.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-2.rs:31: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-2.rs:40: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-2.rs:49: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-2.rs:58: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-2.rs:67: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-2.rs:76: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`.
|