blob: fe6db8af0e4a356049724c35585ef90306deade9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//TEST:COMPARE_HLSL: -profile vs_5_0 -target dxbc-assembly -no-checking
// Allow (but ignore) initializer on `cbuffer` member
cbuffer C : register(b0)
{
int a = -1;
};
float4 main() : SV_Position
{
return a;
}
|