67 lines
2.3 KiB
Text
67 lines
2.3 KiB
Text
![]() |
error[E0370]: enum discriminant overflowed
|
||
|
--> $DIR/discrim-overflow-2.rs:27:9
|
||
|
|
|
||
|
27 | OhNo, //~ ERROR enum discriminant overflowed [E0370]
|
||
|
| ^^^^ overflowed on value after 127i8
|
||
|
|
|
||
|
= note: explicitly set `OhNo = -128i8` if that is desired outcome
|
||
|
|
||
|
error[E0370]: enum discriminant overflowed
|
||
|
--> $DIR/discrim-overflow-2.rs:38:9
|
||
|
|
|
||
|
38 | OhNo, //~ ERROR enum discriminant overflowed [E0370]
|
||
|
| ^^^^ overflowed on value after 255u8
|
||
|
|
|
||
|
= note: explicitly set `OhNo = 0u8` if that is desired outcome
|
||
|
|
||
|
error[E0370]: enum discriminant overflowed
|
||
|
--> $DIR/discrim-overflow-2.rs:49:9
|
||
|
|
|
||
|
49 | OhNo, //~ ERROR enum discriminant overflowed [E0370]
|
||
|
| ^^^^ overflowed on value after 32767i16
|
||
|
|
|
||
|
= note: explicitly set `OhNo = -32768i16` if that is desired outcome
|
||
|
|
||
|
error[E0370]: enum discriminant overflowed
|
||
|
--> $DIR/discrim-overflow-2.rs:60:9
|
||
|
|
|
||
|
60 | OhNo, //~ ERROR enum discriminant overflowed [E0370]
|
||
|
| ^^^^ overflowed on value after 65535u16
|
||
|
|
|
||
|
= note: explicitly set `OhNo = 0u16` if that is desired outcome
|
||
|
|
||
|
error[E0370]: enum discriminant overflowed
|
||
|
--> $DIR/discrim-overflow-2.rs:71:9
|
||
|
|
|
||
|
71 | OhNo, //~ ERROR enum discriminant overflowed [E0370]
|
||
|
| ^^^^ overflowed on value after 2147483647i32
|
||
|
|
|
||
|
= note: explicitly set `OhNo = -2147483648i32` if that is desired outcome
|
||
|
|
||
|
error[E0370]: enum discriminant overflowed
|
||
|
--> $DIR/discrim-overflow-2.rs:82:9
|
||
|
|
|
||
|
82 | OhNo, //~ ERROR enum discriminant overflowed [E0370]
|
||
|
| ^^^^ overflowed on value after 4294967295u32
|
||
|
|
|
||
|
= note: explicitly set `OhNo = 0u32` if that is desired outcome
|
||
|
|
||
|
error[E0370]: enum discriminant overflowed
|
||
|
--> $DIR/discrim-overflow-2.rs:93:9
|
||
|
|
|
||
|
93 | OhNo, //~ ERROR enum discriminant overflowed [E0370]
|
||
|
| ^^^^ overflowed on value after 9223372036854775807i64
|
||
|
|
|
||
|
= note: explicitly set `OhNo = -9223372036854775808i64` if that is desired outcome
|
||
|
|
||
|
error[E0370]: enum discriminant overflowed
|
||
|
--> $DIR/discrim-overflow-2.rs:104:9
|
||
|
|
|
||
|
104 | OhNo, //~ ERROR enum discriminant overflowed [E0370]
|
||
|
| ^^^^ overflowed on value after 18446744073709551615u64
|
||
|
|
|
||
|
= note: explicitly set `OhNo = 0u64` if that is desired outcome
|
||
|
|
||
|
error: aborting due to 8 previous errors
|
||
|
|