diff --git a/tests/ui/missing-supertrait.stderr b/tests/ui/missing-supertrait.stderr index 9c8c5fb..9c60489 100644 --- a/tests/ui/missing-supertrait.stderr +++ b/tests/ui/missing-supertrait.stderr @@ -8,8 +8,8 @@ error[E0277]: the trait bound `dyn MyTrait: Clone` is not satisfied | required by a bound introduced by this call | = help: the following other types implement trait `DynClone`: - [T] str + [T] = note: required for `dyn MyTrait` to implement `DynClone` note: required by a bound in `clone_box` --> src/lib.rs @@ -31,8 +31,8 @@ error[E0277]: the trait bound `dyn MyTrait + Send: Clone` is not satisfied | required by a bound introduced by this call | = help: the following other types implement trait `DynClone`: - [T] str + [T] = note: required for `dyn MyTrait + Send` to implement `DynClone` note: required by a bound in `clone_box` --> src/lib.rs @@ -54,8 +54,8 @@ error[E0277]: the trait bound `dyn MyTrait + Sync: Clone` is not satisfied | required by a bound introduced by this call | = help: the following other types implement trait `DynClone`: - [T] str + [T] = note: required for `dyn MyTrait + Sync` to implement `DynClone` note: required by a bound in `clone_box` --> src/lib.rs @@ -77,8 +77,8 @@ error[E0277]: the trait bound `dyn MyTrait + Send + Sync: Clone` is not satisfie | required by a bound introduced by this call | = help: the following other types implement trait `DynClone`: - [T] str + [T] = note: required for `dyn MyTrait + Send + Sync` to implement `DynClone` note: required by a bound in `clone_box` --> src/lib.rs