Checkpoint: Compiling after view type removal

This commit is contained in:
Marshall Bowers 2023-10-26 15:20:38 +02:00
parent c9c9db903d
commit 88ef74ec8f
44 changed files with 392 additions and 695 deletions

View file

@ -19,7 +19,7 @@ pub fn derive_component(input: TokenStream) -> TokenStream {
}) {
quote! { #first_type_param }
} else {
trait_generics.params.push(parse_quote! { V: 'static + Send + Sync });
trait_generics.params.push(parse_quote! { V: 'static });
quote! { V }
}
};