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

hooks default impl missing where clause #13264

Merged
merged 4 commits into from
Feb 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frame/support/procedural/src/pallet/expand/hooks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ pub fn expand_hooks(def: &mut Def) -> proc_macro2::TokenStream {
quote::quote! {
impl<#type_impl_gen>
#frame_support::traits::Hooks<<T as #frame_system::Config>::BlockNumber>
for Pallet<#type_use_gen> {}
for #pallet_ident<#type_use_gen> #where_clause {}
}
} else {
proc_macro2::TokenStream::new()
Expand Down
3 changes: 1 addition & 2 deletions frame/support/test/tests/pallet_ui/duplicate_store_attr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,4 @@ mod pallet {
type Foo<T> = StorageValue<_, u8>;
}

fn main() {
}
fn main() {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#[frame_support::pallet]
mod pallet {
#[pallet::config]
pub trait Config: frame_system::Config where <Self as frame_system::Config>::Index: From<u128> {}

#[pallet::pallet]
pub struct Pallet<T>(core::marker::PhantomData<T>);

#[pallet::call]
impl<T: Config> Pallet<T> where <T as frame_system::Config>::Index: From<u128> {}

impl<T: Config> Pallet<T> where <T as frame_system::Config>::Index: From<u128> {
fn foo(x: u128) {
let _index = <T as frame_system::Config>::Index::from(x);
}
}
}

fn main() {}