Sign in
dawn
/
dawn
/
2d245581d702e6d94de066f8d53a3f8b5aa263e2
/
.
/
test
/
tint
/
expressions
/
index
/
let
/
array_nested_struct.wgsl.expected.ir.dxc.hlsl
blob: 704ec9a3eef207fbc7b256bd069b50749c2cebd1 [
file
]
struct
S
{
int
m
;
uint
n
[
4
];
};
uint
f
()
{
S v
[
2
]
=
(
S
[
2
])
0
;
S a
[
2
]
=
v
;
return
a
[
1
].
n
[
1
];
}
[
numthreads
(
1
,
1
,
1
)]
void
unused_entry_point
()
{
}