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

12 lines
87 B
HLSL

struct S2 {
int m;
};
struct S1 {
S2 m;
};
void f() {
S1 v = (S1)0;
return;
}