blob: bdd8751739e75df5838f4dc3de236cc00647bb14 [file] [log] [blame]
#version 310 es
void deref() {
ivec3 a = ivec3(0);
uint v = uint(a.x);
a.x = int((v + uint(42)));
}
void no_deref() {
ivec3 a = ivec3(0);
uint v_1 = uint(a.x);
a.x = int((v_1 + uint(42)));
}
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void main() {
deref();
no_deref();
}