blob: 4a08357347b4421196370e6b4fe83f8cea5b6a70 [file] [log] [blame]
struct _a {
int _b;
};
RWByteAddressBuffer s : register(u0);
[numthreads(1, 1, 1)]
void f() {
_a c = (_a)0;
int d = c._b;
s.Store(0u, asuint(asint((asuint(c._b) + asuint(d)))));
}