$ftype should have ::'s inserted (also $Xmeta as ty)
With field: Option<()>
, $ftype
is Option<()>
but it should be Option::<()>
so that you can say $ftype::default()
etc.
Spotted while working on #68 (closed)
With field: Option<()>
, $ftype
is Option<()>
but it should be Option::<()>
so that you can say $ftype::default()
etc.
Spotted while working on #68 (closed)