Skip to content

Commit

Permalink
Fixed something I broke while making clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-F-Bryan committed Sep 20, 2023
1 parent 9aa7450 commit 6465f44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/lib/compiler-test-derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fn compiler_test_impl(attrs: TokenStream, input: TokenStream) -> TokenStream {
Ok(f) => f,
Err(e) => return e.into_compile_error(),
};
let fn_name = my_fn.sig.ident;
let fn_name = &my_fn.sig.ident;

// Let's build the ignores to append an `#[ignore]` macro to the
// autogenerated tests in case the test appears in the `ignores.txt` path;
Expand Down

0 comments on commit 6465f44

Please sign in to comment.