We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2a0077f + 9273829 commit b757801Copy full SHA for b757801
derive/src/lib.rs
@@ -55,9 +55,9 @@ fn expand_derive_arbitrary(input: syn::DeriveInput) -> Result<TokenStream> {
55
56
Ok(quote! {
57
const _: () = {
58
- std::thread_local! {
+ ::std::thread_local! {
59
#[allow(non_upper_case_globals)]
60
- static #recursive_count: std::cell::Cell<u32> = std::cell::Cell::new(0);
+ static #recursive_count: ::core::cell::Cell<u32> = ::core::cell::Cell::new(0);
61
}
62
63
#[automatically_derived]
0 commit comments