1#version 440
2
3void main() {
4    uint a = 5;
5    atomicAdd(a * 2, 0);
6    atomicAdd(a, 0);
7}
8