We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da766e2 commit 5dad08dCopy full SHA for 5dad08d
1 file changed
tests/unit/out/refcount/global_without_initializer.rs
@@ -23,7 +23,8 @@ thread_local!(
23
pub static s: Value<Ptr<S>> = Rc::new(RefCell::new(Ptr::<S>::null()));
24
);
25
thread_local!(
26
- pub static file: Value<Ptr<::std::fs::File>> = Rc::new(RefCell::new(Ptr::<_IO_FILE>::null()));
+ pub static file: Value<Ptr<::std::fs::File>> =
27
+ Rc::new(RefCell::new(Ptr::<::std::fs::File>::null()));
28
29
30
pub static size: Value<u64> = <Value<u64>>::default();
0 commit comments