Test generics and other things

This commit is contained in:
Werner
2022-05-22 13:41:48 -03:00
parent acb22d7ce6
commit ced258e5c5
16 changed files with 283 additions and 32 deletions

View File

@ -0,0 +1,12 @@
use crate::*;
use std::collections::HashSet as InnerHashSet;
#[derive(Reflect)]
pub struct HashSet<T>
where
T: Reflect,
{
inner: InnerHashSet<T>,
}
impl<T> HashSet<T> where T: Reflect {}