We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e342c42 commit c591c10Copy full SHA for c591c10
src/test/mod.rs
@@ -13,8 +13,8 @@ use syn::Result;
13
14
fn test_derive(input: TokenStream, expected: TokenStream) -> Result<()> {
15
let left = crate::derive_where_internal(input.clone())?.to_string();
16
- // FIXME this currently means, that input_without_derive_where_attributes is not actually
17
- // tested.
+ // FIXME this currently means, that input_without_derive_where_attributes is not
+ // actually tested.
18
let item = crate::input_without_derive_where_attributes(syn::parse2(input)?);
19
let right = quote! {#item #expected}.to_string();
20
0 commit comments