blob: 2c599187036e8d119c33be0f3c10445c2dcbb259 [file] [log] [blame]
struct S1 {
int i;
};
struct S2 {
S1 s1;
};
struct S3 {
S2 s2;
};
static const S1 v = {int(42)};
static const S2 v_1 = {v};
static const S3 v_2 = {v_1};
static S3 P = v_2;
RWByteAddressBuffer tint_symbol : register(u0);
[numthreads(1, 1, 1)]
void main() {
tint_symbol.Store(0u, asuint(P.s2.s1.i));
}