Sign in
dawn
/
tint
/
refs/heads/chromium/4887
/
.
/
test
/
out_of_order_decls
/
struct
/
struct.wgsl.expected.glsl
blob: a95a80d87a0bf57f7930e113b1fa7089c4506cd2 [
file
] [
log
] [
blame
] [
edit
]
#version 310 es
precision mediump
float
;
struct
S2
{
int
m
;
};
struct
S1
{
S2 m
;
};
void
f
()
{
S1 v
=
S1
(
S2
(
0
));
}
void
main
()
{
f
();
return
;
}