type General string
type SpecificA General
type SpecificB General
type SpecificC General
I get the following error when I compile this and try and supply a Specific? type where I have a General type …
cannot use ot (variable of type ObjectType) as Type value in struct literal
is there a way to convert a Specific? type to General type so I can test code written to work on General?