rust/tests/ui/enum-discriminant/discriminant-overflow-2.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
2.0 KiB
Plaintext
Raw Normal View History

error[E0370]: enum discriminant overflowed
2023-05-29 10:05:24 -05:00
--> $DIR/discriminant-overflow-2.rs:13:9
|
2019-03-09 06:03:44 -06:00
LL | OhNo,
2018-03-05 03:21:11 -06:00
| ^^^^ overflowed on value after 127
|
2018-03-05 03:21:11 -06:00
= note: explicitly set `OhNo = -128` if that is desired outcome
error[E0370]: enum discriminant overflowed
2023-05-29 10:05:24 -05:00
--> $DIR/discriminant-overflow-2.rs:22:9
|
2019-03-09 06:03:44 -06:00
LL | OhNo,
2018-03-05 03:21:11 -06:00
| ^^^^ overflowed on value after 255
|
2018-03-05 03:21:11 -06:00
= note: explicitly set `OhNo = 0` if that is desired outcome
error[E0370]: enum discriminant overflowed
2023-05-29 10:05:24 -05:00
--> $DIR/discriminant-overflow-2.rs:31:9
|
2019-03-09 06:03:44 -06:00
LL | OhNo,
2018-03-05 03:21:11 -06:00
| ^^^^ overflowed on value after 32767
|
2018-03-05 03:21:11 -06:00
= note: explicitly set `OhNo = -32768` if that is desired outcome
error[E0370]: enum discriminant overflowed
2023-05-29 10:05:24 -05:00
--> $DIR/discriminant-overflow-2.rs:40:9
|
2019-03-09 06:03:44 -06:00
LL | OhNo,
2018-03-05 03:21:11 -06:00
| ^^^^ overflowed on value after 65535
|
2018-03-05 03:21:11 -06:00
= note: explicitly set `OhNo = 0` if that is desired outcome
error[E0370]: enum discriminant overflowed
2023-05-29 10:05:24 -05:00
--> $DIR/discriminant-overflow-2.rs:49:9
|
2019-03-09 06:03:44 -06:00
LL | OhNo,
2018-03-05 03:21:11 -06:00
| ^^^^ overflowed on value after 2147483647
|
2018-03-05 03:21:11 -06:00
= note: explicitly set `OhNo = -2147483648` if that is desired outcome
error[E0370]: enum discriminant overflowed
2023-05-29 10:05:24 -05:00
--> $DIR/discriminant-overflow-2.rs:58:9
|
2019-03-09 06:03:44 -06:00
LL | OhNo,
2018-03-05 03:21:11 -06:00
| ^^^^ overflowed on value after 4294967295
|
2018-03-05 03:21:11 -06:00
= note: explicitly set `OhNo = 0` if that is desired outcome
error[E0370]: enum discriminant overflowed
2023-05-29 10:05:24 -05:00
--> $DIR/discriminant-overflow-2.rs:67:9
|
2019-03-09 06:03:44 -06:00
LL | OhNo,
2018-03-05 03:21:11 -06:00
| ^^^^ overflowed on value after 9223372036854775807
|
2018-03-05 03:21:11 -06:00
= note: explicitly set `OhNo = -9223372036854775808` if that is desired outcome
error[E0370]: enum discriminant overflowed
2023-05-29 10:05:24 -05:00
--> $DIR/discriminant-overflow-2.rs:76:9
2018-02-22 18:42:32 -06:00
|
2019-03-09 06:03:44 -06:00
LL | OhNo,
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
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`.