Sign in
dawn
/
dawn
/
144ebed4c7ee7c6ecddeedfa81d607bbf256e8f2
/
.
/
test
/
tint
/
out_of_order_decls
/
struct
/
struct.wgsl.expected.glsl
blob: d27346c10275cf2d444c17ccd88a184d4e46c45e [
file
] [
log
] [
blame
]
#version 310 es
precision highp
float
;
struct
S2
{
int
m
;
};
struct
S1
{
S2 m
;
};
void
f
()
{
S1 v
=
S1
(
S2
(
0
));
}
void
main
()
{
f
();
return
;
}