We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: