blob: 3a99d9b3751a7e99b4f78407533285c40f0bc73c [file] [log] [blame]
void deref() {
int3 a = (int(0)).xxx;
a[0u] = (a.x + int(42));
}
void no_deref() {
int3 a = (int(0)).xxx;
a[0u] = (a.x + int(42));
}
[numthreads(1, 1, 1)]
void main() {
deref();
no_deref();
}