dawn-cmake/test/tint/out_of_order_decls/array/struct.wgsl.expected.fxc.hlsl

12 lines
124 B
HLSL

struct S {
int m;
};
static S A[4] = (S[4])0;
void f() {
const S tint_symbol = {1};
A[0] = tint_symbol;
return;
}