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