This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mira Ressel
committed
Mar 16, 2023
1 parent
9f91844
commit 0943b5f
Showing
18 changed files
with
83 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
error[E0277]: can't compare `Foo<T>` with `Foo<T>` | ||
--> tests/derive_no_bound_ui/eq.rs:6:8 | ||
| | ||
6 | struct Foo<T: Config> { | ||
| ^^^ no implementation for `Foo<T> == Foo<T>` | ||
| | ||
= help: the trait `PartialEq` is not implemented for `Foo<T>` | ||
--> tests/derive_no_bound_ui/eq.rs:6:8 | ||
| | ||
6 | struct Foo<T: Config> { | ||
| ^^^^^^^^^^^^^^ no implementation for `Foo<T> == Foo<T>` | ||
| | ||
= help: the trait `PartialEq` is not implemented for `Foo<T>` | ||
note: required by a bound in `std::cmp::Eq` | ||
--> $RUST/core/src/cmp.rs | ||
| | ||
| pub trait Eq: PartialEq<Self> { | ||
| ^^^^^^^^^^^^^^^ required by this bound in `std::cmp::Eq` | ||
--> $RUST/core/src/cmp.rs | ||
| | ||
| pub trait Eq: PartialEq<Self> { | ||
| ^^^^^^^^^^^^^^^ required by this bound in `Eq` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 9 additions & 9 deletions
18
frame/support/test/tests/pallet_ui/genesis_default_not_satisfied.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 10 additions & 10 deletions
20
frame/support/test/tests/pallet_ui/hooks_invalid_item.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
error[E0107]: missing generics for trait `Hooks` | ||
--> tests/pallet_ui/hooks_invalid_item.rs:12:18 | ||
| | ||
12 | impl<T: Config> Hooks for Pallet<T> {} | ||
| ^^^^^ expected 1 generic argument | ||
| | ||
--> tests/pallet_ui/hooks_invalid_item.rs:12:18 | ||
| | ||
12 | impl<T: Config> Hooks for Pallet<T> {} | ||
| ^^^^^ expected 1 generic argument | ||
| | ||
note: trait defined here, with 1 generic parameter: `BlockNumber` | ||
--> $WORKSPACE/frame/support/src/traits/hooks.rs | ||
| | ||
| pub trait Hooks<BlockNumber> { | ||
| ^^^^^ ----------- | ||
--> $WORKSPACE/frame/support/src/traits/hooks.rs | ||
| | ||
| pub trait Hooks<BlockNumber> { | ||
| ^^^^^ ----------- | ||
help: add missing generic argument | ||
| | ||
12 | impl<T: Config> Hooks<BlockNumber> for Pallet<T> {} | ||
| ~~~~~~~~~~~~~~~~~~ | ||
| +++++++++++++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.