blob: ac3efc54a34cdf258ced87c80c23123c2ead1e0f [file] [log] [blame]
struct S {
/* 0x0000 */ int a;
};
ConstantBuffer<S> v : register(b0, space0);
[numthreads(1, 1, 1)]
void main() {
const int use = (v.a + 1);
return;
}