Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 3f41979

Browse files
committed
make updates.
1 parent 4312d77 commit 3f41979

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
error[E0277]: the trait bound `<T as Config>::C: Clone` is not satisfied
1+
error[E0277]: the trait bound `<T as Config>::C: std::clone::Clone` is not satisfied
22
--> $DIR/clone.rs:7:2
33
|
44
7 | c: T::C,
5-
| ^ the trait `Clone` is not implemented for `<T as Config>::C`
5+
| ^ the trait `std::clone::Clone` is not implemented for `<T as Config>::C`
66
|
7-
= note: required by `clone`
7+
= note: required by `std::clone::Clone::clone`

frame/support/test/tests/derive_no_bound_ui/eq.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ error[E0277]: can't compare `Foo<T>` with `Foo<T>`
77
::: $RUST/core/src/cmp.rs
88
|
99
| pub trait Eq: PartialEq<Self> {
10-
| --------------- required by this bound in `Eq`
10+
| --------------- required by this bound in `std::cmp::Eq`
1111
|
12-
= help: the trait `PartialEq` is not implemented for `Foo<T>`
12+
= help: the trait `std::cmp::PartialEq` is not implemented for `Foo<T>`

0 commit comments

Comments
 (0)