Sign in
dawn
/
dawn
/
HEAD
/
.
/
test
/
tint
/
expressions
/
index
/
let
/
struct_nested_struct.wgsl.expected.wgsl
blob: 0c7dee3ead2a204c6679bf535c5e1b01d412ce36 [
file
] [
log
] [
blame
]
struct
T
{
o
:
f32
,
p
:
u32
,
}
struct
S
{
m
:
i32
,
n
:
T
,
}
fn f
()
->
u32
{
let
a
=
S
();
return
a
.
n
.
p
;
}
@compute
@workgroup_size
(
1
)
fn main
()
{
_
=
f
();
}