Skip to content

Commit 37a3878

Browse files
committed
Update ui test suite to nightly-2024-10-30
1 parent 115fb98 commit 37a3878

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/ui/missing-supertrait.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0277]: the trait bound `dyn MyTrait: DynClone` is not satisfied
44
3 | dyn_clone::clone_trait_object!(MyTrait);
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
66
| |
7-
| the trait `Clone` is not implemented for `dyn MyTrait`, which is required by `dyn MyTrait: DynClone`
7+
| the trait `Clone` is not implemented for `dyn MyTrait`
88
| required by a bound introduced by this call
99
|
1010
= help: the following other types implement trait `DynClone`:
@@ -27,7 +27,7 @@ error[E0277]: the trait bound `dyn MyTrait + Send: DynClone` is not satisfied
2727
3 | dyn_clone::clone_trait_object!(MyTrait);
2828
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2929
| |
30-
| the trait `Clone` is not implemented for `dyn MyTrait + Send`, which is required by `dyn MyTrait + Send: DynClone`
30+
| the trait `Clone` is not implemented for `dyn MyTrait + Send`
3131
| required by a bound introduced by this call
3232
|
3333
= help: the following other types implement trait `DynClone`:
@@ -50,7 +50,7 @@ error[E0277]: the trait bound `dyn MyTrait + Sync: DynClone` is not satisfied
5050
3 | dyn_clone::clone_trait_object!(MyTrait);
5151
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5252
| |
53-
| the trait `Clone` is not implemented for `dyn MyTrait + Sync`, which is required by `dyn MyTrait + Sync: DynClone`
53+
| the trait `Clone` is not implemented for `dyn MyTrait + Sync`
5454
| required by a bound introduced by this call
5555
|
5656
= help: the following other types implement trait `DynClone`:
@@ -73,7 +73,7 @@ error[E0277]: the trait bound `dyn MyTrait + Send + Sync: DynClone` is not satis
7373
3 | dyn_clone::clone_trait_object!(MyTrait);
7474
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7575
| |
76-
| the trait `Clone` is not implemented for `dyn MyTrait + Send + Sync`, which is required by `dyn MyTrait + Send + Sync: DynClone`
76+
| the trait `Clone` is not implemented for `dyn MyTrait + Send + Sync`
7777
| required by a bound introduced by this call
7878
|
7979
= help: the following other types implement trait `DynClone`:

0 commit comments

Comments
 (0)