Sign in
dawn
/
tint
/
b4cd255c6ecc8db6d49274b8de378b33c478c629
/
.
/
test
/
intrinsics
/
arrayLength
/
via_let_complex.wgsl.expected.wgsl
blob: 30f059a14c357501bf7cccaece140d7e32ae553e [
file
] [
log
] [
blame
]
struct
S
{
a
:
array
<i32>
;
}
@group
(
0
)
@binding
(
0
)
var
<
storage
,
read
>
G
:
S
;
@stage
(
compute
)
@workgroup_size
(
1
)
fn main
()
{
let
p
=
&(*(&(
G
)));
let
p2
=
&(*(
p
));
let
p3
=
&((*(
p
)).
a
);
let
l1
:
u32
=
arrayLength
(&(*(
p3
)));
}