Sign in
dawn
/
dawn
/
HEAD
/
.
/
test
/
tint
/
expressions
/
index
/
let
/
struct_nested_array.wgsl.expected.fxc.hlsl
blob: 4c4e1a15d57dec66e1a56e0f7356c454998eeb16 [
file
] [
log
] [
blame
]
struct
S
{
int
m
;
uint
n
[
4
];
};
uint
f
()
{
S a
=
(
S
)
0
;
return
a
.
n
[
2u
];
}
[
numthreads
(
1
,
1
,
1
)]
void
main
()
{
f
();
}