On Sunday, 30 July 2017 at 08:18:07 UTC, Danni Coy wrote:
The following code is not working for me

float[3] f;
f[] = abs(f)[] * -1.0f;
where abs is a function that returns a float[3];

it complains that f should be attached to some memory.

Is it a bug or am I missing something?

This is unimplemented currently and no one cares about it.

You can do:

f[] = abs(f)[];
f[] *= -1;

Reply via email to