Open Bananattack opened 3 years ago
Ran into an issue where the following wouldn't work:
func foo(dest : *u8 in de) { ... } foo.dest = &array[0]; foo(foo.dest);
because Wiz was reporting dest as a u16 (the type of dest's designated storage) rather than *u8, the element type given to dest itself.
u16
*u8
Investigate what is causing this to happen.
Ran into an issue where the following wouldn't work:
because Wiz was reporting dest as a
u16
(the type of dest's designated storage) rather than*u8
, the element type given to dest itself.Investigate what is causing this to happen.