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