No.
> i have to point to something inside a struct that could be 2 different(not
> related) substructs...
Can you be more specific about what you're trying to do? I suspect an
opportunity for using an interface.
Chris
--
Chris "allusive" Dollin
Russ
Set the value inside the struct to interface{}, and you can assign
either substruct to it, and use a type assertion in place of a cast to
get it back.
This is, generally, the replacement for where you'd use a void pointer
in C, and does not require using unsafe or any other package.