1
Fork 0

Update ui tests

This commit is contained in:
varkor 2019-04-22 19:50:11 +01:00
parent a43ccb0b9b
commit f571b9548d
6 changed files with 2 additions and 7 deletions

View file

@ -1,11 +1,11 @@
error[E0308]: mismatched types
--> $DIR/const-eval-overflow-3b.rs:24:22
--> $DIR/const-eval-overflow-3b.rs:18:22
|
LL | = [0; (i8::MAX + 1u8) as usize];
| ^^^ expected i8, found u8
error[E0277]: cannot add `u8` to `i8`
--> $DIR/const-eval-overflow-3b.rs:24:20
--> $DIR/const-eval-overflow-3b.rs:18:20
|
LL | = [0; (i8::MAX + 1u8) as usize];
| ^ no implementation for `i8 + u8`