[HLSL] Array by-value assignment #109043
Labels
clang:codegen
IR generation bugs: mangling, exceptions, etc.
clang:frontend
Language frontend issues, e.g. anything involving "Sema"
HLSL
HLSL Language Support
Currently arrays are not assignable.
The following code should compile successfully:
export void fn() { int Arr[2] = {1, 2}; int Arr2[2] = {0, 0}; Arr2 = Arr; }
The text was updated successfully, but these errors were encountered: