Skip to content

Commit

Permalink
Update ui test suite to nightly-2023-01-13
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jan 13, 2023
1 parent fe16a5d commit bfb56d2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/ui/unique_ptr_to_opaque.stderr
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
error[E0271]: type mismatch resolving `<outside::C as ExternType>::Kind == Trivial`
error[E0271]: type mismatch resolving `<C as ExternType>::Kind == Trivial`
--> tests/ui/unique_ptr_to_opaque.rs:22:25
|
22 | cxx::UniquePtr::new(outside::C { a: 4 });
| ------------------- ^^^^^^^^^^^^^^^^^^^ type mismatch resolving `<outside::C as ExternType>::Kind == Trivial`
| ------------------- ^^^^^^^^^^^^^^^^^^^ type mismatch resolving `<C as ExternType>::Kind == Trivial`
| |
| required by a bound introduced by this call
|
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/vec_opaque.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ error: needs a cxx::ExternType impl in order to be used as a vector element in V
11 | type Job;
| ^^^^^^^^

error[E0271]: type mismatch resolving `<handle::Job as ExternType>::Kind == Trivial`
error[E0271]: type mismatch resolving `<Job as ExternType>::Kind == Trivial`
--> tests/ui/vec_opaque.rs:22:14
|
22 | type Job = crate::handle::Job;
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/wrong_type_id.stderr
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
error[E0271]: type mismatch resolving `<StringPiece as ExternType>::Id == (f, o, l, l, y, (), B, y, t, e, R, a, n, g, e)`
error[E0271]: type mismatch resolving `<StringPiece as ExternType>::Id == (f, o, l, l, y, (), B, y, t, e, ..., ..., ..., ..., ...)`
--> tests/ui/wrong_type_id.rs:11:14
|
11 | type ByteRange = crate::here::StringPiece;
Expand Down

0 comments on commit bfb56d2

Please sign in to comment.