Add a couple more sync impls to mini_core

This commit is contained in:
bjorn3 2024-03-27 20:43:19 +00:00
parent 454c87bdd4
commit fbda869b4e
1 changed files with 2 additions and 1 deletions

View File

@ -90,8 +90,9 @@ unsafe impl Sync for i16 {}
unsafe impl Sync for i32 {}
unsafe impl Sync for isize {}
unsafe impl Sync for char {}
unsafe impl Sync for f32 {}
unsafe impl<'a, T: ?Sized> Sync for &'a T {}
unsafe impl Sync for [u8; 16] {}
unsafe impl<T: Sync, const N: usize> Sync for [T; N] {}
#[lang = "freeze"]
unsafe auto trait Freeze {}