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