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`

View File

@ -23,4 +23,3 @@ fn main() {
// But this should be a use of the (renamed) crate:
crate::bar::foo();
}

View File

@ -16,4 +16,3 @@ use edition_lint_paths::foo;
fn main() {
foo();
}

View File

@ -15,4 +15,3 @@ use self::edition_lint_paths::foo;
fn main() {
foo();
}

View File

@ -16,4 +16,3 @@ use crate::my_crate::foo;
fn main() {
foo();
}

View File

@ -23,4 +23,3 @@ use crate::m::edition_lint_paths::foo;
fn main() {
foo();
}