``` int[3] x; x[0] = 1; x[1] = 3; x[2] = 6; thread int[] r = @x[1]; // or @(x[1]) r[1] = 5; ``` should fail, instead of resulting in x being [1;3;5].
Migrated to https://github.com/gpuweb/WHLSL/issues/115